diff --git a/frameworks/rack-falcon/app.rb b/frameworks/rack-falcon/app.rb index 903ed3e1c..dbf50485b 100644 --- a/frameworks/rack-falcon/app.rb +++ b/frameworks/rack-falcon/app.rb @@ -4,6 +4,7 @@ # Our Rack application to be executed by rackup require 'rack' +require 'uri' class App CONTENT_TYPE = 'Content-Type' @@ -14,7 +15,7 @@ def call(env) when '/pipeline' render_plain 'ok' when '/baseline11' - params = Rack::Utils.parse_query(env['QUERY_STRING']) + params = URI.decode_www_form(env['QUERY_STRING']).to_h total = params['a'].to_i + params['b'].to_i if env['REQUEST_METHOD'] == 'POST' body = env["rack.input"]&.read @@ -22,7 +23,7 @@ def call(env) end render_plain total.to_s when '/baseline2' - params = Rack::Utils.parse_query(env['QUERY_STRING']) + params = URI.decode_www_form(env['QUERY_STRING']).to_h total = params['a'].to_i + params['b'].to_i render_plain total.to_s else diff --git a/frameworks/rack-iodine/app.rb b/frameworks/rack-iodine/app.rb index f3fe6153c..cf56abb5a 100644 --- a/frameworks/rack-iodine/app.rb +++ b/frameworks/rack-iodine/app.rb @@ -3,6 +3,7 @@ # Our Rack application to be executed by rackup require 'rack' +require 'uri' class App CONTENT_TYPE = 'Content-Type' @@ -13,7 +14,7 @@ def call(env) when '/pipeline' render_plain 'ok' when '/baseline11' - params = Rack::Utils.parse_query(env['QUERY_STRING']) + params = URI.decode_www_form(env['QUERY_STRING']).to_h total = params['a'].to_i + params['b'].to_i if env['REQUEST_METHOD'] == 'POST' body = env["rack.input"]&.read @@ -21,7 +22,7 @@ def call(env) end render_plain total.to_s when '/baseline2' - params = Rack::Utils.parse_query(env['QUERY_STRING']) + params = URI.decode_www_form(env['QUERY_STRING']).to_h total = params['a'].to_i + params['b'].to_i render_plain total.to_s else diff --git a/site/data/results/rack-falcon.json b/site/data/results/rack-falcon.json index fcd99b0e1..665050224 100644 --- a/site/data/results/rack-falcon.json +++ b/site/data/results/rack-falcon.json @@ -4,19 +4,19 @@ "baseline-4096": { "framework": "rack-falcon", "language": "Ruby", - "rps": 523648, - "avg_latency": "7.82ms", - "p99_latency": "12.80ms", - "cpu": "6518.4%", - "memory": "1.3GiB", + "rps": 541466, + "avg_latency": "7.55ms", + "p99_latency": "11.30ms", + "cpu": "6562.8%", + "memory": "1.1GiB", "connections": 4096, "threads": 64, "duration": "5s", "pipeline": 1, - "bandwidth": "44.43MB/s", - "input_bw": "40.45MB/s", + "bandwidth": "45.95MB/s", + "input_bw": "41.83MB/s", "reconnects": 0, - "status_2xx": 2618243, + "status_2xx": 2707332, "status_3xx": 0, "status_4xx": 0, "status_5xx": 0 @@ -24,67 +24,67 @@ "latency-10k-1024": { "framework": "rack-falcon", "language": "Ruby", - "rps": 9978, - "avg_latency": "164.7us", - "p99_latency": "340.0us", - "cpu": "118.0%", - "memory": "1.1GiB", + "rps": 9982, + "avg_latency": "166.4us", + "p99_latency": "524.0us", + "cpu": "118.8%", + "memory": "765MiB", "connections": 1024, "threads": 64, "duration": "20s", "pipeline": 1, "bandwidth": "0.88MB/s", "reconnects": 0, - "status_2xx": 199595, + "status_2xx": 199668, "status_3xx": 0, "status_4xx": 0, "status_5xx": 0, - "cpu_usec": 24082380, - "cpu_per_req_us": 120.6562, + "cpu_usec": 24459671, + "cpu_per_req_us": 122.5017, "target_rate": 10000, - "rate_ratio": 0.9978, - "p99_9_latency": "8236.0us" + "rate_ratio": 0.9982, + "p99_9_latency": "12580.0us" }, "latency-1m-1024": { "framework": "rack-falcon", "language": "Ruby", - "rps": 549126, - "avg_latency": "4075897.8us", - "p99_latency": "11399168.0us", - "cpu": "6473.6%", - "memory": "1.1GiB", + "rps": 569602, + "avg_latency": "3886927.2us", + "p99_latency": "10940416.0us", + "cpu": "6544.5%", + "memory": "831MiB", "connections": 1024, "threads": 64, "duration": "20s", "pipeline": 1, - "bandwidth": "48.32MB/s", + "bandwidth": "50.13MB/s", "reconnects": 0, - "status_2xx": 10986943, + "status_2xx": 11396451, "status_3xx": 0, "status_4xx": 0, "status_5xx": 0, - "cpu_usec": 1268077684, - "cpu_per_req_us": 115.4168, + "cpu_usec": 1275904694, + "cpu_per_req_us": 111.9563, "target_rate": 1000000, - "rate_ratio": 0.5491, - "p99_9_latency": "13021184.0us" + "rate_ratio": 0.5696, + "p99_9_latency": "12251136.0us" }, "limited-conn-4096": { "framework": "rack-falcon", "language": "Ruby", - "rps": 481962, - "avg_latency": "8.43ms", - "p99_latency": "73.20ms", - "cpu": "6574.3%", - "memory": "1.3GiB", + "rps": 503900, + "avg_latency": "8.04ms", + "p99_latency": "70.40ms", + "cpu": "6255.5%", + "memory": "894MiB", "connections": 4096, "threads": 64, "duration": "5s", "pipeline": 1, - "bandwidth": "40.89MB/s", - "input_bw": "37.23MB/s", - "reconnects": 240789, - "status_2xx": 2409812, + "bandwidth": "42.75MB/s", + "input_bw": "38.93MB/s", + "reconnects": 251722, + "status_2xx": 2519502, "status_3xx": 0, "status_4xx": 0, "status_5xx": 0 @@ -92,18 +92,18 @@ "pipelined-4096": { "framework": "rack-falcon", "language": "Ruby", - "rps": 795966, - "avg_latency": "81.94ms", - "p99_latency": "112.60ms", - "cpu": "6657.5%", + "rps": 801850, + "avg_latency": "81.11ms", + "p99_latency": "113.20ms", + "cpu": "6666.4%", "memory": "1.0GiB", "connections": 4096, "threads": 64, "duration": "5s", "pipeline": 16, - "bandwidth": "67.54MB/s", + "bandwidth": "68.04MB/s", "reconnects": 0, - "status_2xx": 3979831, + "status_2xx": 4009253, "status_3xx": 0, "status_4xx": 0, "status_5xx": 0 diff --git a/site/data/results/rack-iodine.json b/site/data/results/rack-iodine.json index ce7bff2e2..5fdf5401b 100644 --- a/site/data/results/rack-iodine.json +++ b/site/data/results/rack-iodine.json @@ -4,19 +4,19 @@ "baseline-4096": { "framework": "rack-iodine", "language": "Ruby", - "rps": 62640, - "avg_latency": "63.27ms", - "p99_latency": "229.60ms", - "cpu": "4860.4%", - "memory": "5.0GiB", + "rps": 62831, + "avg_latency": "62.59ms", + "p99_latency": "211.70ms", + "cpu": "4829.1%", + "memory": "4.9GiB", "connections": 4096, "threads": 64, "duration": "5s", "pipeline": 1, - "bandwidth": "7.35MB/s", - "input_bw": "4.84MB/s", + "bandwidth": "7.37MB/s", + "input_bw": "4.85MB/s", "reconnects": 0, - "status_2xx": 313200, + "status_2xx": 314156, "status_3xx": 0, "status_4xx": 0, "status_5xx": 0 @@ -24,67 +24,67 @@ "latency-10k-1024": { "framework": "rack-iodine", "language": "Ruby", - "rps": 9966, - "avg_latency": "140.0us", - "p99_latency": "148.0us", - "cpu": "88.3%", - "memory": "4.8GiB", + "rps": 9951, + "avg_latency": "136.4us", + "p99_latency": "140.0us", + "cpu": "95.5%", + "memory": "4.3GiB", "connections": 1024, "threads": 64, "duration": "20s", "pipeline": 1, - "bandwidth": "1.22MB/s", + "bandwidth": "1.21MB/s", "reconnects": 0, - "status_2xx": 199358, + "status_2xx": 199051, "status_3xx": 0, "status_4xx": 0, "status_5xx": 0, - "cpu_usec": 14260870, - "cpu_per_req_us": 71.534, + "cpu_usec": 14382756, + "cpu_per_req_us": 72.2566, "target_rate": 10000, - "rate_ratio": 0.9966, - "p99_9_latency": "26216.0us" + "rate_ratio": 0.9951, + "p99_9_latency": "25256.0us" }, "latency-1m-1024": { "framework": "rack-iodine", "language": "Ruby", - "rps": 994864, - "avg_latency": "3719.6us", - "p99_latency": "105952.0us", - "cpu": "6434.6%", - "memory": "4.8GiB", + "rps": 995562, + "avg_latency": "377.7us", + "p99_latency": "837.0us", + "cpu": "6083.9%", + "memory": "4.4GiB", "connections": 1024, "threads": 64, "duration": "20s", "pipeline": 1, - "bandwidth": "121.37MB/s", + "bandwidth": "121.46MB/s", "reconnects": 0, - "status_2xx": 19901977, + "status_2xx": 19915391, "status_3xx": 0, "status_4xx": 0, "status_5xx": 0, - "cpu_usec": 1213259590, - "cpu_per_req_us": 60.9618, + "cpu_usec": 1116515635, + "cpu_per_req_us": 56.063, "target_rate": 1000000, - "rate_ratio": 0.9949, - "p99_9_latency": "358016.0us" + "rate_ratio": 0.9956, + "p99_9_latency": "51472.0us" }, "limited-conn-4096": { "framework": "rack-iodine", "language": "Ruby", - "rps": 59238, - "avg_latency": "66.77ms", - "p99_latency": "247.20ms", - "cpu": "4837.3%", - "memory": "5.2GiB", + "rps": 59158, + "avg_latency": "66.82ms", + "p99_latency": "231.20ms", + "cpu": "4812.8%", + "memory": "4.7GiB", "connections": 4096, "threads": 64, "duration": "5s", "pipeline": 1, - "bandwidth": "6.95MB/s", - "input_bw": "4.58MB/s", - "reconnects": 27840, - "status_2xx": 296193, + "bandwidth": "6.94MB/s", + "input_bw": "4.57MB/s", + "reconnects": 27791, + "status_2xx": 295791, "status_3xx": 0, "status_4xx": 0, "status_5xx": 0 @@ -92,18 +92,18 @@ "pipelined-4096": { "framework": "rack-iodine", "language": "Ruby", - "rps": 2380906, - "avg_latency": "26.70ms", - "p99_latency": "68.80ms", - "cpu": "6480.7%", + "rps": 2329452, + "avg_latency": "27.11ms", + "p99_latency": "62.40ms", + "cpu": "6778.4%", "memory": "4.6GiB", "connections": 4096, "threads": 64, "duration": "5s", "pipeline": 16, - "bandwidth": "279.18MB/s", + "bandwidth": "273.17MB/s", "reconnects": 0, - "status_2xx": 11904531, + "status_2xx": 11647260, "status_3xx": 0, "status_4xx": 0, "status_5xx": 0 diff --git a/site/static/logs/baseline/4096/rack-falcon.log b/site/static/logs/baseline/4096/rack-falcon.log index 1edec4189..5f16a8014 100644 --- a/site/static/logs/baseline/4096/rack-falcon.log +++ b/site/static/logs/baseline/4096/rack-falcon.log @@ -1,8 +1,8 @@ -{"time":"2026-09-02T11:15:50+00:00","severity":"info","process_id":1,"fiber_id":888,"pid":1,"subject":"Falcon::Command::Host","object_id":896,"message":"Falcon Host v0.54.2 taking flight!\n- Configuration: falcon.rb\n- To terminate: Ctrl-C or kill 1\n- To reload: kill -HUP 1\n"} -{"time":"2026-09-02T11:15:50+00:00","severity":"info","process_id":1,"fiber_id":888,"pid":1,"subject":"Async::Container::Notify::Console","object_id":904,"message":{"status":"Initializing controller..."}} -{"time":"2026-09-02T11:15:50+00:00","severity":"info","process_id":1,"fiber_id":888,"pid":1,"subject":"Falcon::Service::Server","object_id":920,"message":"Starting app on #"} -{"time":"2026-09-02T11:15:50+00:00","severity":"info","process_id":1,"fiber_id":888,"pid":1,"subject":"Async::Service::Controller","object_id":928,"message":"Controller starting..."} -{"time":"2026-09-02T11:15:50+00:00","severity":"info","process_id":1,"fiber_id":888,"pid":1,"subject":"Async::Service::Controller","object_id":928,"message":"Starting container..."} +{"time":"2026-09-03T12:05:50+00:00","severity":"info","process_id":1,"fiber_id":888,"pid":1,"subject":"Falcon::Command::Host","object_id":896,"message":"Falcon Host v0.54.2 taking flight!\n- Configuration: falcon.rb\n- To terminate: Ctrl-C or kill 1\n- To reload: kill -HUP 1\n"} +{"time":"2026-09-03T12:05:50+00:00","severity":"info","process_id":1,"fiber_id":888,"pid":1,"subject":"Async::Container::Notify::Console","object_id":904,"message":{"status":"Initializing controller..."}} +{"time":"2026-09-03T12:05:50+00:00","severity":"info","process_id":1,"fiber_id":888,"pid":1,"subject":"Falcon::Service::Server","object_id":920,"message":"Starting app on #"} +{"time":"2026-09-03T12:05:50+00:00","severity":"info","process_id":1,"fiber_id":888,"pid":1,"subject":"Async::Service::Controller","object_id":928,"message":"Controller starting..."} +{"time":"2026-09-03T12:05:50+00:00","severity":"info","process_id":1,"fiber_id":888,"pid":1,"subject":"Async::Service::Controller","object_id":928,"message":"Starting container..."} /app/vendor/bundle/ruby/4.0.0/gems/async-container-0.30.0/lib/async/container/notify/pipe.rb:68: warning: IO::Buffer is experimental and both the Ruby and C interface may change in the future! /app/vendor/bundle/ruby/4.0.0/gems/async-container-0.30.0/lib/async/container/notify/pipe.rb:68: warning: IO::Buffer is experimental and both the Ruby and C interface may change in the future! /app/vendor/bundle/ruby/4.0.0/gems/async-container-0.30.0/lib/async/container/notify/pipe.rb:68: warning: IO::Buffer is experimental and both the Ruby and C interface may change in the future! @@ -67,8 +67,8 @@ /app/vendor/bundle/ruby/4.0.0/gems/async-container-0.30.0/lib/async/container/notify/pipe.rb:68: warning: IO::Buffer is experimental and both the Ruby and C interface may change in the future! /app/vendor/bundle/ruby/4.0.0/gems/async-container-0.30.0/lib/async/container/notify/pipe.rb:68: warning: IO::Buffer is experimental and both the Ruby and C interface may change in the future! /app/vendor/bundle/ruby/4.0.0/gems/async-container-0.30.0/lib/async/container/notify/pipe.rb:68: warning: IO::Buffer is experimental and both the Ruby and C interface may change in the future! -{"time":"2026-09-02T11:15:50+00:00","severity":"info","process_id":1,"fiber_id":888,"pid":1,"subject":"Async::Service::Controller","object_id":928,"message":"Waiting for startup..."} +{"time":"2026-09-03T12:05:51+00:00","severity":"info","process_id":1,"fiber_id":888,"pid":1,"subject":"Async::Service::Controller","object_id":928,"message":"Waiting for startup..."} /app/vendor/bundle/ruby/4.0.0/gems/async-container-0.30.0/lib/async/container/notify/pipe.rb:68: warning: IO::Buffer is experimental and both the Ruby and C interface may change in the future! -{"time":"2026-09-02T11:15:50+00:00","severity":"info","process_id":1,"fiber_id":888,"pid":1,"subject":"Async::Service::Controller","object_id":928,"message":"Finished startup."} -{"time":"2026-09-02T11:15:50+00:00","severity":"info","process_id":1,"fiber_id":888,"pid":1,"subject":"Async::Container::Notify::Console","object_id":904,"message":{"ready":true,"size":65}} -{"time":"2026-09-02T11:15:50+00:00","severity":"info","process_id":1,"fiber_id":888,"pid":1,"subject":"Async::Service::Controller","object_id":928,"message":"Controller started..."} +{"time":"2026-09-03T12:05:51+00:00","severity":"info","process_id":1,"fiber_id":888,"pid":1,"subject":"Async::Service::Controller","object_id":928,"message":"Finished startup."} +{"time":"2026-09-03T12:05:51+00:00","severity":"info","process_id":1,"fiber_id":888,"pid":1,"subject":"Async::Container::Notify::Console","object_id":904,"message":{"ready":true,"size":65}} +{"time":"2026-09-03T12:05:51+00:00","severity":"info","process_id":1,"fiber_id":888,"pid":1,"subject":"Async::Service::Controller","object_id":928,"message":"Controller started..."} diff --git a/site/static/logs/baseline/4096/rack-iodine.log b/site/static/logs/baseline/4096/rack-iodine.log index f491a827a..3bad747ff 100644 --- a/site/static/logs/baseline/4096/rack-iodine.log +++ b/site/static/logs/baseline/4096/rack-iodine.log @@ -20,21 +20,21 @@ INFO: 18 is running. INFO: 22 is running. INFO: 26 is running. INFO: 30 is running. -INFO: 34 is running. -INFO: 39 is running. -INFO: 44 is running. -INFO: 49 is running. -INFO: 55 is running. +INFO: 35 is running. +INFO: 40 is running. +INFO: 46 is running. +INFO: 51 is running. +INFO: 56 is running. INFO: 60 is running. -INFO: 64 is running. -INFO: 70 is running. -INFO: 74 is running. +INFO: 65 is running. +INFO: 69 is running. +INFO: 75 is running. INFO: 79 is running. -INFO: 84 is running. -INFO: 90 is running. -INFO: 95 is running. -INFO: 100 is running. -INFO: 105 is running. +INFO: 85 is running. +INFO: 91 is running. +INFO: 96 is running. +INFO: 101 is running. +INFO: 106 is running. INFO: 111 is running. INFO: 116 is running. INFO: 121 is running. @@ -42,20 +42,20 @@ INFO: 126 is running. INFO: 131 is running. INFO: 136 is running. INFO: 141 is running. -INFO: 146 is running. -INFO: 151 is running. -INFO: 156 is running. -INFO: 161 is running. +INFO: 147 is running. +INFO: 152 is running. +INFO: 157 is running. +INFO: 162 is running. INFO: 167 is running. -INFO: 171 is running. -INFO: 176 is running. +INFO: 172 is running. +INFO: 177 is running. INFO: 181 is running. INFO: 186 is running. INFO: 191 is running. INFO: 196 is running. INFO: 201 is running. INFO: 206 is running. -INFO: 212 is running. +INFO: 211 is running. INFO: 217 is running. INFO: 222 is running. INFO: 227 is running. @@ -76,22 +76,22 @@ INFO: 300 is running. INFO: 304 is running. INFO: 308 is running. INFO: 313 is running. -INFO: 317 is running. -INFO: 322 is running. +INFO: 318 is running. +INFO: 323 is running. INFO: 327 is running. -INFO: 333 is running. -INFO: 338 is running. +INFO: 332 is running. +INFO: 337 is running. INFO: 343 is running. INFO: 348 is running. INFO: 353 is running. INFO: 358 is running. INFO: 363 is running. INFO: 368 is running. -INFO: 373 is running. -INFO: 378 is running. -INFO: 383 is running. -INFO: 388 is running. -INFO: 393 is running. +INFO: 372 is running. +INFO: 377 is running. +INFO: 382 is running. +INFO: 387 is running. +INFO: 392 is running. INFO: 398 is running. INFO: 403 is running. INFO: 408 is running. @@ -121,23 +121,23 @@ INFO: 523 is running. INFO: 528 is running. INFO: 533 is running. INFO: 538 is running. -INFO: 543 is running. -INFO: 548 is running. -INFO: 553 is running. +INFO: 544 is running. +INFO: 554 is running. +INFO: 549 is running. INFO: 558 is running. -INFO: 563 is running. -INFO: 568 is running. -INFO: 573 is running. +INFO: 564 is running. +INFO: 569 is running. +INFO: 574 is running. INFO: 579 is running. INFO: 584 is running. INFO: 589 is running. -INFO: 594 is running. -INFO: 599 is running. -INFO: 604 is running. +INFO: 593 is running. +INFO: 598 is running. +INFO: 603 is running. INFO: 610 is running. INFO: 614 is running. INFO: 618 is running. -INFO: 624 is running. -INFO: 629 is running. +INFO: 623 is running. +INFO: 628 is running. INFO: 633 is running. INFO: 639 is running. diff --git a/site/static/logs/latency-10k/1024/rack-falcon.log b/site/static/logs/latency-10k/1024/rack-falcon.log index fdfc7e74b..583688e1e 100644 --- a/site/static/logs/latency-10k/1024/rack-falcon.log +++ b/site/static/logs/latency-10k/1024/rack-falcon.log @@ -1,8 +1,8 @@ -{"time":"2026-09-02T11:18:12+00:00","severity":"info","process_id":1,"fiber_id":888,"pid":1,"subject":"Falcon::Command::Host","object_id":896,"message":"Falcon Host v0.54.2 taking flight!\n- Configuration: falcon.rb\n- To terminate: Ctrl-C or kill 1\n- To reload: kill -HUP 1\n"} -{"time":"2026-09-02T11:18:12+00:00","severity":"info","process_id":1,"fiber_id":888,"pid":1,"subject":"Async::Container::Notify::Console","object_id":904,"message":{"status":"Initializing controller..."}} -{"time":"2026-09-02T11:18:12+00:00","severity":"info","process_id":1,"fiber_id":888,"pid":1,"subject":"Falcon::Service::Server","object_id":920,"message":"Starting app on #"} -{"time":"2026-09-02T11:18:12+00:00","severity":"info","process_id":1,"fiber_id":888,"pid":1,"subject":"Async::Service::Controller","object_id":928,"message":"Controller starting..."} -{"time":"2026-09-02T11:18:12+00:00","severity":"info","process_id":1,"fiber_id":888,"pid":1,"subject":"Async::Service::Controller","object_id":928,"message":"Starting container..."} +{"time":"2026-09-03T12:08:12+00:00","severity":"info","process_id":1,"fiber_id":888,"pid":1,"subject":"Falcon::Command::Host","object_id":896,"message":"Falcon Host v0.54.2 taking flight!\n- Configuration: falcon.rb\n- To terminate: Ctrl-C or kill 1\n- To reload: kill -HUP 1\n"} +{"time":"2026-09-03T12:08:12+00:00","severity":"info","process_id":1,"fiber_id":888,"pid":1,"subject":"Async::Container::Notify::Console","object_id":904,"message":{"status":"Initializing controller..."}} +{"time":"2026-09-03T12:08:12+00:00","severity":"info","process_id":1,"fiber_id":888,"pid":1,"subject":"Falcon::Service::Server","object_id":920,"message":"Starting app on #"} +{"time":"2026-09-03T12:08:12+00:00","severity":"info","process_id":1,"fiber_id":888,"pid":1,"subject":"Async::Service::Controller","object_id":928,"message":"Controller starting..."} +{"time":"2026-09-03T12:08:12+00:00","severity":"info","process_id":1,"fiber_id":888,"pid":1,"subject":"Async::Service::Controller","object_id":928,"message":"Starting container..."} /app/vendor/bundle/ruby/4.0.0/gems/async-container-0.30.0/lib/async/container/notify/pipe.rb:68: warning: IO::Buffer is experimental and both the Ruby and C interface may change in the future! /app/vendor/bundle/ruby/4.0.0/gems/async-container-0.30.0/lib/async/container/notify/pipe.rb:68: warning: IO::Buffer is experimental and both the Ruby and C interface may change in the future! /app/vendor/bundle/ruby/4.0.0/gems/async-container-0.30.0/lib/async/container/notify/pipe.rb:68: warning: IO::Buffer is experimental and both the Ruby and C interface may change in the future! @@ -67,8 +67,8 @@ /app/vendor/bundle/ruby/4.0.0/gems/async-container-0.30.0/lib/async/container/notify/pipe.rb:68: warning: IO::Buffer is experimental and both the Ruby and C interface may change in the future! /app/vendor/bundle/ruby/4.0.0/gems/async-container-0.30.0/lib/async/container/notify/pipe.rb:68: warning: IO::Buffer is experimental and both the Ruby and C interface may change in the future! /app/vendor/bundle/ruby/4.0.0/gems/async-container-0.30.0/lib/async/container/notify/pipe.rb:68: warning: IO::Buffer is experimental and both the Ruby and C interface may change in the future! -{"time":"2026-09-02T11:18:12+00:00","severity":"info","process_id":1,"fiber_id":888,"pid":1,"subject":"Async::Service::Controller","object_id":928,"message":"Waiting for startup..."} +{"time":"2026-09-03T12:08:12+00:00","severity":"info","process_id":1,"fiber_id":888,"pid":1,"subject":"Async::Service::Controller","object_id":928,"message":"Waiting for startup..."} /app/vendor/bundle/ruby/4.0.0/gems/async-container-0.30.0/lib/async/container/notify/pipe.rb:68: warning: IO::Buffer is experimental and both the Ruby and C interface may change in the future! -{"time":"2026-09-02T11:18:12+00:00","severity":"info","process_id":1,"fiber_id":888,"pid":1,"subject":"Async::Service::Controller","object_id":928,"message":"Finished startup."} -{"time":"2026-09-02T11:18:12+00:00","severity":"info","process_id":1,"fiber_id":888,"pid":1,"subject":"Async::Container::Notify::Console","object_id":904,"message":{"ready":true,"size":65}} -{"time":"2026-09-02T11:18:12+00:00","severity":"info","process_id":1,"fiber_id":888,"pid":1,"subject":"Async::Service::Controller","object_id":928,"message":"Controller started..."} +{"time":"2026-09-03T12:08:12+00:00","severity":"info","process_id":1,"fiber_id":888,"pid":1,"subject":"Async::Service::Controller","object_id":928,"message":"Finished startup."} +{"time":"2026-09-03T12:08:12+00:00","severity":"info","process_id":1,"fiber_id":888,"pid":1,"subject":"Async::Container::Notify::Console","object_id":904,"message":{"ready":true,"size":65}} +{"time":"2026-09-03T12:08:12+00:00","severity":"info","process_id":1,"fiber_id":888,"pid":1,"subject":"Async::Service::Controller","object_id":928,"message":"Controller started..."} diff --git a/site/static/logs/latency-10k/1024/rack-iodine.log b/site/static/logs/latency-10k/1024/rack-iodine.log index aee0fa02e..17316025b 100644 --- a/site/static/logs/latency-10k/1024/rack-iodine.log +++ b/site/static/logs/latency-10k/1024/rack-iodine.log @@ -20,23 +20,23 @@ INFO: 18 is running. INFO: 22 is running. INFO: 26 is running. INFO: 30 is running. -INFO: 34 is running. -INFO: 39 is running. -INFO: 44 is running. +INFO: 35 is running. +INFO: 40 is running. +INFO: 45 is running. INFO: 50 is running. INFO: 55 is running. INFO: 60 is running. -INFO: 65 is running. -INFO: 70 is running. +INFO: 64 is running. +INFO: 69 is running. INFO: 75 is running. INFO: 80 is running. INFO: 85 is running. -INFO: 90 is running. -INFO: 95 is running. +INFO: 91 is running. +INFO: 96 is running. INFO: 101 is running. INFO: 106 is running. INFO: 111 is running. -INFO: 115 is running. +INFO: 116 is running. INFO: 121 is running. INFO: 126 is running. INFO: 131 is running. @@ -46,15 +46,15 @@ INFO: 146 is running. INFO: 151 is running. INFO: 156 is running. INFO: 161 is running. -INFO: 167 is running. +INFO: 166 is running. INFO: 171 is running. INFO: 177 is running. INFO: 182 is running. -INFO: 187 is running. -INFO: 192 is running. -INFO: 197 is running. -INFO: 202 is running. -INFO: 207 is running. +INFO: 186 is running. +INFO: 191 is running. +INFO: 196 is running. +INFO: 201 is running. +INFO: 206 is running. INFO: 212 is running. INFO: 217 is running. INFO: 222 is running. @@ -74,19 +74,19 @@ INFO: 287 is running. INFO: 295 is running. INFO: 299 is running. INFO: 303 is running. -INFO: 308 is running. -INFO: 313 is running. +INFO: 307 is running. +INFO: 312 is running. INFO: 317 is running. INFO: 322 is running. -INFO: 327 is running. -INFO: 332 is running. -INFO: 337 is running. -INFO: 342 is running. -INFO: 347 is running. +INFO: 328 is running. +INFO: 333 is running. +INFO: 338 is running. +INFO: 343 is running. +INFO: 348 is running. INFO: 353 is running. -INFO: 358 is running. -INFO: 363 is running. -INFO: 368 is running. +INFO: 357 is running. +INFO: 362 is running. +INFO: 367 is running. INFO: 373 is running. INFO: 378 is running. INFO: 383 is running. @@ -97,7 +97,7 @@ INFO: 403 is running. INFO: 408 is running. INFO: 413 is running. INFO: 418 is running. -INFO: 422 is running. +INFO: 423 is running. INFO: 428 is running. INFO: 433 is running. INFO: 438 is running. diff --git a/site/static/logs/latency-1m/1024/rack-falcon.log b/site/static/logs/latency-1m/1024/rack-falcon.log index dd6d63ff8..94ed23b67 100644 --- a/site/static/logs/latency-1m/1024/rack-falcon.log +++ b/site/static/logs/latency-1m/1024/rack-falcon.log @@ -1,8 +1,8 @@ -{"time":"2026-09-02T11:17:01+00:00","severity":"info","process_id":1,"fiber_id":888,"pid":1,"subject":"Falcon::Command::Host","object_id":896,"message":"Falcon Host v0.54.2 taking flight!\n- Configuration: falcon.rb\n- To terminate: Ctrl-C or kill 1\n- To reload: kill -HUP 1\n"} -{"time":"2026-09-02T11:17:02+00:00","severity":"info","process_id":1,"fiber_id":888,"pid":1,"subject":"Async::Container::Notify::Console","object_id":904,"message":{"status":"Initializing controller..."}} -{"time":"2026-09-02T11:17:02+00:00","severity":"info","process_id":1,"fiber_id":888,"pid":1,"subject":"Falcon::Service::Server","object_id":920,"message":"Starting app on #"} -{"time":"2026-09-02T11:17:02+00:00","severity":"info","process_id":1,"fiber_id":888,"pid":1,"subject":"Async::Service::Controller","object_id":928,"message":"Controller starting..."} -{"time":"2026-09-02T11:17:02+00:00","severity":"info","process_id":1,"fiber_id":888,"pid":1,"subject":"Async::Service::Controller","object_id":928,"message":"Starting container..."} +{"time":"2026-09-03T12:07:02+00:00","severity":"info","process_id":1,"fiber_id":888,"pid":1,"subject":"Falcon::Command::Host","object_id":896,"message":"Falcon Host v0.54.2 taking flight!\n- Configuration: falcon.rb\n- To terminate: Ctrl-C or kill 1\n- To reload: kill -HUP 1\n"} +{"time":"2026-09-03T12:07:02+00:00","severity":"info","process_id":1,"fiber_id":888,"pid":1,"subject":"Async::Container::Notify::Console","object_id":904,"message":{"status":"Initializing controller..."}} +{"time":"2026-09-03T12:07:02+00:00","severity":"info","process_id":1,"fiber_id":888,"pid":1,"subject":"Falcon::Service::Server","object_id":920,"message":"Starting app on #"} +{"time":"2026-09-03T12:07:02+00:00","severity":"info","process_id":1,"fiber_id":888,"pid":1,"subject":"Async::Service::Controller","object_id":928,"message":"Controller starting..."} +{"time":"2026-09-03T12:07:02+00:00","severity":"info","process_id":1,"fiber_id":888,"pid":1,"subject":"Async::Service::Controller","object_id":928,"message":"Starting container..."} /app/vendor/bundle/ruby/4.0.0/gems/async-container-0.30.0/lib/async/container/notify/pipe.rb:68: warning: IO::Buffer is experimental and both the Ruby and C interface may change in the future! /app/vendor/bundle/ruby/4.0.0/gems/async-container-0.30.0/lib/async/container/notify/pipe.rb:68: warning: IO::Buffer is experimental and both the Ruby and C interface may change in the future! /app/vendor/bundle/ruby/4.0.0/gems/async-container-0.30.0/lib/async/container/notify/pipe.rb:68: warning: IO::Buffer is experimental and both the Ruby and C interface may change in the future! @@ -67,8 +67,8 @@ /app/vendor/bundle/ruby/4.0.0/gems/async-container-0.30.0/lib/async/container/notify/pipe.rb:68: warning: IO::Buffer is experimental and both the Ruby and C interface may change in the future! /app/vendor/bundle/ruby/4.0.0/gems/async-container-0.30.0/lib/async/container/notify/pipe.rb:68: warning: IO::Buffer is experimental and both the Ruby and C interface may change in the future! /app/vendor/bundle/ruby/4.0.0/gems/async-container-0.30.0/lib/async/container/notify/pipe.rb:68: warning: IO::Buffer is experimental and both the Ruby and C interface may change in the future! -{"time":"2026-09-02T11:17:02+00:00","severity":"info","process_id":1,"fiber_id":888,"pid":1,"subject":"Async::Service::Controller","object_id":928,"message":"Waiting for startup..."} +{"time":"2026-09-03T12:07:02+00:00","severity":"info","process_id":1,"fiber_id":888,"pid":1,"subject":"Async::Service::Controller","object_id":928,"message":"Waiting for startup..."} /app/vendor/bundle/ruby/4.0.0/gems/async-container-0.30.0/lib/async/container/notify/pipe.rb:68: warning: IO::Buffer is experimental and both the Ruby and C interface may change in the future! -{"time":"2026-09-02T11:17:02+00:00","severity":"info","process_id":1,"fiber_id":888,"pid":1,"subject":"Async::Service::Controller","object_id":928,"message":"Finished startup."} -{"time":"2026-09-02T11:17:02+00:00","severity":"info","process_id":1,"fiber_id":888,"pid":1,"subject":"Async::Container::Notify::Console","object_id":904,"message":{"ready":true,"size":65}} -{"time":"2026-09-02T11:17:02+00:00","severity":"info","process_id":1,"fiber_id":888,"pid":1,"subject":"Async::Service::Controller","object_id":928,"message":"Controller started..."} +{"time":"2026-09-03T12:07:02+00:00","severity":"info","process_id":1,"fiber_id":888,"pid":1,"subject":"Async::Service::Controller","object_id":928,"message":"Finished startup."} +{"time":"2026-09-03T12:07:02+00:00","severity":"info","process_id":1,"fiber_id":888,"pid":1,"subject":"Async::Container::Notify::Console","object_id":904,"message":{"ready":true,"size":65}} +{"time":"2026-09-03T12:07:02+00:00","severity":"info","process_id":1,"fiber_id":888,"pid":1,"subject":"Async::Service::Controller","object_id":928,"message":"Controller started..."} diff --git a/site/static/logs/latency-1m/1024/rack-iodine.log b/site/static/logs/latency-1m/1024/rack-iodine.log index 71bb2c808..597dbeed4 100644 --- a/site/static/logs/latency-1m/1024/rack-iodine.log +++ b/site/static/logs/latency-1m/1024/rack-iodine.log @@ -14,130 +14,130 @@ INFO: Server is running 127 workers X 1 thread with facil.io 0.7.4 (epoll) * Root pid: 1 * Press ^C to stop -INFO: 10 is running. -INFO: 14 is running. -INFO: 18 is running. -INFO: 22 is running. -INFO: 26 is running. -INFO: 30 is running. -INFO: 34 is running. -INFO: 39 is running. +INFO: 11 is running. +INFO: 15 is running. +INFO: 19 is running. +INFO: 23 is running. +INFO: 27 is running. +INFO: 31 is running. +INFO: 36 is running. +INFO: 40 is running. INFO: 45 is running. -INFO: 50 is running. -INFO: 54 is running. -INFO: 59 is running. -INFO: 65 is running. -INFO: 70 is running. -INFO: 74 is running. -INFO: 80 is running. -INFO: 85 is running. -INFO: 90 is running. -INFO: 95 is running. -INFO: 100 is running. -INFO: 106 is running. +INFO: 51 is running. +INFO: 56 is running. +INFO: 61 is running. +INFO: 66 is running. +INFO: 71 is running. +INFO: 76 is running. +INFO: 82 is running. +INFO: 87 is running. +INFO: 92 is running. +INFO: 97 is running. +INFO: 101 is running. +INFO: 107 is running. INFO: 111 is running. -INFO: 116 is running. -INFO: 121 is running. -INFO: 126 is running. -INFO: 131 is running. -INFO: 136 is running. -INFO: 141 is running. -INFO: 146 is running. -INFO: 151 is running. -INFO: 156 is running. -INFO: 161 is running. -INFO: 166 is running. -INFO: 171 is running. -INFO: 176 is running. -INFO: 182 is running. -INFO: 187 is running. -INFO: 192 is running. -INFO: 197 is running. +INFO: 117 is running. +INFO: 122 is running. +INFO: 127 is running. +INFO: 132 is running. +INFO: 137 is running. +INFO: 142 is running. +INFO: 147 is running. +INFO: 152 is running. +INFO: 158 is running. +INFO: 162 is running. +INFO: 167 is running. +INFO: 172 is running. +INFO: 177 is running. +INFO: 183 is running. +INFO: 188 is running. +INFO: 193 is running. +INFO: 198 is running. INFO: 202 is running. -INFO: 207 is running. +INFO: 208 is running. INFO: 212 is running. -INFO: 217 is running. -INFO: 221 is running. -INFO: 227 is running. +INFO: 218 is running. +INFO: 223 is running. +INFO: 228 is running. INFO: 232 is running. INFO: 237 is running. INFO: 242 is running. -INFO: 247 is running. -INFO: 252 is running. -INFO: 257 is running. -INFO: 262 is running. -INFO: 267 is running. -INFO: 272 is running. -INFO: 277 is running. -INFO: 282 is running. -INFO: 287 is running. -INFO: 295 is running. -INFO: 299 is running. -INFO: 303 is running. -INFO: 307 is running. -INFO: 312 is running. +INFO: 248 is running. +INFO: 253 is running. +INFO: 258 is running. +INFO: 263 is running. +INFO: 268 is running. +INFO: 273 is running. +INFO: 278 is running. +INFO: 283 is running. +INFO: 288 is running. +INFO: 296 is running. +INFO: 300 is running. +INFO: 304 is running. +INFO: 308 is running. +INFO: 313 is running. INFO: 318 is running. -INFO: 322 is running. +INFO: 323 is running. INFO: 328 is running. INFO: 333 is running. -INFO: 338 is running. -INFO: 343 is running. -INFO: 347 is running. -INFO: 352 is running. -INFO: 357 is running. -INFO: 362 is running. -INFO: 367 is running. -INFO: 372 is running. -INFO: 378 is running. -INFO: 383 is running. -INFO: 388 is running. -INFO: 392 is running. -INFO: 397 is running. -INFO: 403 is running. -INFO: 407 is running. -INFO: 412 is running. -INFO: 418 is running. -INFO: 423 is running. -INFO: 428 is running. -INFO: 433 is running. -INFO: 438 is running. -INFO: 443 is running. -INFO: 448 is running. -INFO: 453 is running. -INFO: 458 is running. -INFO: 463 is running. -INFO: 468 is running. -INFO: 473 is running. -INFO: 478 is running. -INFO: 483 is running. -INFO: 488 is running. -INFO: 493 is running. -INFO: 498 is running. -INFO: 503 is running. -INFO: 508 is running. -INFO: 513 is running. -INFO: 518 is running. -INFO: 523 is running. -INFO: 528 is running. -INFO: 533 is running. -INFO: 538 is running. -INFO: 543 is running. -INFO: 548 is running. -INFO: 553 is running. -INFO: 558 is running. -INFO: 563 is running. -INFO: 568 is running. -INFO: 573 is running. -INFO: 578 is running. -INFO: 583 is running. -INFO: 588 is running. -INFO: 593 is running. -INFO: 598 is running. -INFO: 603 is running. -INFO: 610 is running. -INFO: 614 is running. -INFO: 618 is running. -INFO: 623 is running. -INFO: 628 is running. -INFO: 633 is running. -INFO: 638 is running. +INFO: 339 is running. +INFO: 344 is running. +INFO: 349 is running. +INFO: 354 is running. +INFO: 359 is running. +INFO: 364 is running. +INFO: 369 is running. +INFO: 374 is running. +INFO: 379 is running. +INFO: 384 is running. +INFO: 389 is running. +INFO: 394 is running. +INFO: 399 is running. +INFO: 404 is running. +INFO: 409 is running. +INFO: 414 is running. +INFO: 419 is running. +INFO: 424 is running. +INFO: 429 is running. +INFO: 434 is running. +INFO: 439 is running. +INFO: 444 is running. +INFO: 449 is running. +INFO: 454 is running. +INFO: 459 is running. +INFO: 464 is running. +INFO: 469 is running. +INFO: 474 is running. +INFO: 479 is running. +INFO: 484 is running. +INFO: 489 is running. +INFO: 494 is running. +INFO: 499 is running. +INFO: 504 is running. +INFO: 509 is running. +INFO: 514 is running. +INFO: 519 is running. +INFO: 524 is running. +INFO: 529 is running. +INFO: 534 is running. +INFO: 539 is running. +INFO: 544 is running. +INFO: 549 is running. +INFO: 554 is running. +INFO: 559 is running. +INFO: 564 is running. +INFO: 569 is running. +INFO: 574 is running. +INFO: 579 is running. +INFO: 584 is running. +INFO: 589 is running. +INFO: 594 is running. +INFO: 599 is running. +INFO: 604 is running. +INFO: 611 is running. +INFO: 615 is running. +INFO: 619 is running. +INFO: 624 is running. +INFO: 629 is running. +INFO: 634 is running. +INFO: 639 is running. diff --git a/site/static/logs/limited-conn/4096/rack-falcon.log b/site/static/logs/limited-conn/4096/rack-falcon.log index 19902ea28..16d32d244 100644 --- a/site/static/logs/limited-conn/4096/rack-falcon.log +++ b/site/static/logs/limited-conn/4096/rack-falcon.log @@ -1,8 +1,8 @@ -{"time":"2026-09-02T11:16:38+00:00","severity":"info","process_id":1,"fiber_id":888,"pid":1,"subject":"Falcon::Command::Host","object_id":896,"message":"Falcon Host v0.54.2 taking flight!\n- Configuration: falcon.rb\n- To terminate: Ctrl-C or kill 1\n- To reload: kill -HUP 1\n"} -{"time":"2026-09-02T11:16:38+00:00","severity":"info","process_id":1,"fiber_id":888,"pid":1,"subject":"Async::Container::Notify::Console","object_id":904,"message":{"status":"Initializing controller..."}} -{"time":"2026-09-02T11:16:38+00:00","severity":"info","process_id":1,"fiber_id":888,"pid":1,"subject":"Falcon::Service::Server","object_id":920,"message":"Starting app on #"} -{"time":"2026-09-02T11:16:38+00:00","severity":"info","process_id":1,"fiber_id":888,"pid":1,"subject":"Async::Service::Controller","object_id":928,"message":"Controller starting..."} -{"time":"2026-09-02T11:16:38+00:00","severity":"info","process_id":1,"fiber_id":888,"pid":1,"subject":"Async::Service::Controller","object_id":928,"message":"Starting container..."} +{"time":"2026-09-03T12:06:38+00:00","severity":"info","process_id":1,"fiber_id":888,"pid":1,"subject":"Falcon::Command::Host","object_id":896,"message":"Falcon Host v0.54.2 taking flight!\n- Configuration: falcon.rb\n- To terminate: Ctrl-C or kill 1\n- To reload: kill -HUP 1\n"} +{"time":"2026-09-03T12:06:38+00:00","severity":"info","process_id":1,"fiber_id":888,"pid":1,"subject":"Async::Container::Notify::Console","object_id":904,"message":{"status":"Initializing controller..."}} +{"time":"2026-09-03T12:06:38+00:00","severity":"info","process_id":1,"fiber_id":888,"pid":1,"subject":"Falcon::Service::Server","object_id":920,"message":"Starting app on #"} +{"time":"2026-09-03T12:06:38+00:00","severity":"info","process_id":1,"fiber_id":888,"pid":1,"subject":"Async::Service::Controller","object_id":928,"message":"Controller starting..."} +{"time":"2026-09-03T12:06:38+00:00","severity":"info","process_id":1,"fiber_id":888,"pid":1,"subject":"Async::Service::Controller","object_id":928,"message":"Starting container..."} /app/vendor/bundle/ruby/4.0.0/gems/async-container-0.30.0/lib/async/container/notify/pipe.rb:68: warning: IO::Buffer is experimental and both the Ruby and C interface may change in the future! /app/vendor/bundle/ruby/4.0.0/gems/async-container-0.30.0/lib/async/container/notify/pipe.rb:68: warning: IO::Buffer is experimental and both the Ruby and C interface may change in the future! /app/vendor/bundle/ruby/4.0.0/gems/async-container-0.30.0/lib/async/container/notify/pipe.rb:68: warning: IO::Buffer is experimental and both the Ruby and C interface may change in the future! @@ -67,8 +67,8 @@ /app/vendor/bundle/ruby/4.0.0/gems/async-container-0.30.0/lib/async/container/notify/pipe.rb:68: warning: IO::Buffer is experimental and both the Ruby and C interface may change in the future! /app/vendor/bundle/ruby/4.0.0/gems/async-container-0.30.0/lib/async/container/notify/pipe.rb:68: warning: IO::Buffer is experimental and both the Ruby and C interface may change in the future! /app/vendor/bundle/ruby/4.0.0/gems/async-container-0.30.0/lib/async/container/notify/pipe.rb:68: warning: IO::Buffer is experimental and both the Ruby and C interface may change in the future! -{"time":"2026-09-02T11:16:38+00:00","severity":"info","process_id":1,"fiber_id":888,"pid":1,"subject":"Async::Service::Controller","object_id":928,"message":"Waiting for startup..."} +{"time":"2026-09-03T12:06:38+00:00","severity":"info","process_id":1,"fiber_id":888,"pid":1,"subject":"Async::Service::Controller","object_id":928,"message":"Waiting for startup..."} /app/vendor/bundle/ruby/4.0.0/gems/async-container-0.30.0/lib/async/container/notify/pipe.rb:68: warning: IO::Buffer is experimental and both the Ruby and C interface may change in the future! -{"time":"2026-09-02T11:16:38+00:00","severity":"info","process_id":1,"fiber_id":888,"pid":1,"subject":"Async::Service::Controller","object_id":928,"message":"Finished startup."} -{"time":"2026-09-02T11:16:38+00:00","severity":"info","process_id":1,"fiber_id":888,"pid":1,"subject":"Async::Container::Notify::Console","object_id":904,"message":{"ready":true,"size":65}} -{"time":"2026-09-02T11:16:38+00:00","severity":"info","process_id":1,"fiber_id":888,"pid":1,"subject":"Async::Service::Controller","object_id":928,"message":"Controller started..."} +{"time":"2026-09-03T12:06:38+00:00","severity":"info","process_id":1,"fiber_id":888,"pid":1,"subject":"Async::Service::Controller","object_id":928,"message":"Finished startup."} +{"time":"2026-09-03T12:06:38+00:00","severity":"info","process_id":1,"fiber_id":888,"pid":1,"subject":"Async::Container::Notify::Console","object_id":904,"message":{"ready":true,"size":65}} +{"time":"2026-09-03T12:06:38+00:00","severity":"info","process_id":1,"fiber_id":888,"pid":1,"subject":"Async::Service::Controller","object_id":928,"message":"Controller started..."} diff --git a/site/static/logs/limited-conn/4096/rack-iodine.log b/site/static/logs/limited-conn/4096/rack-iodine.log index 5fbb293cd..910fafae6 100644 --- a/site/static/logs/limited-conn/4096/rack-iodine.log +++ b/site/static/logs/limited-conn/4096/rack-iodine.log @@ -20,21 +20,21 @@ INFO: 18 is running. INFO: 22 is running. INFO: 26 is running. INFO: 30 is running. -INFO: 34 is running. -INFO: 38 is running. -INFO: 44 is running. -INFO: 49 is running. +INFO: 36 is running. +INFO: 40 is running. +INFO: 45 is running. +INFO: 50 is running. INFO: 54 is running. -INFO: 59 is running. +INFO: 60 is running. INFO: 65 is running. INFO: 70 is running. INFO: 75 is running. -INFO: 79 is running. -INFO: 85 is running. -INFO: 89 is running. -INFO: 95 is running. -INFO: 100 is running. -INFO: 105 is running. +INFO: 81 is running. +INFO: 86 is running. +INFO: 91 is running. +INFO: 96 is running. +INFO: 101 is running. +INFO: 106 is running. INFO: 111 is running. INFO: 116 is running. INFO: 121 is running. @@ -44,19 +44,19 @@ INFO: 136 is running. INFO: 141 is running. INFO: 146 is running. INFO: 151 is running. -INFO: 157 is running. -INFO: 162 is running. -INFO: 167 is running. +INFO: 156 is running. +INFO: 161 is running. +INFO: 166 is running. INFO: 171 is running. INFO: 176 is running. INFO: 181 is running. INFO: 187 is running. INFO: 192 is running. -INFO: 196 is running. +INFO: 197 is running. INFO: 201 is running. INFO: 206 is running. -INFO: 211 is running. -INFO: 216 is running. +INFO: 212 is running. +INFO: 217 is running. INFO: 222 is running. INFO: 227 is running. INFO: 232 is running. @@ -76,21 +76,21 @@ INFO: 299 is running. INFO: 303 is running. INFO: 307 is running. INFO: 312 is running. -INFO: 317 is running. +INFO: 318 is running. INFO: 322 is running. INFO: 328 is running. -INFO: 332 is running. +INFO: 333 is running. INFO: 338 is running. INFO: 343 is running. -INFO: 348 is running. +INFO: 347 is running. INFO: 353 is running. -INFO: 358 is running. -INFO: 363 is running. -INFO: 368 is running. -INFO: 372 is running. +INFO: 357 is running. +INFO: 362 is running. +INFO: 367 is running. +INFO: 373 is running. INFO: 378 is running. -INFO: 382 is running. -INFO: 387 is running. +INFO: 383 is running. +INFO: 388 is running. INFO: 393 is running. INFO: 398 is running. INFO: 403 is running. @@ -130,14 +130,14 @@ INFO: 568 is running. INFO: 573 is running. INFO: 578 is running. INFO: 583 is running. +INFO: 594 is running. INFO: 588 is running. -INFO: 593 is running. -INFO: 598 is running. -INFO: 603 is running. +INFO: 599 is running. +INFO: 604 is running. INFO: 610 is running. INFO: 614 is running. INFO: 619 is running. -INFO: 624 is running. -INFO: 629 is running. +INFO: 623 is running. +INFO: 628 is running. +INFO: 633 is running. INFO: 639 is running. -INFO: 634 is running. diff --git a/site/static/logs/pipelined/4096/rack-falcon.log b/site/static/logs/pipelined/4096/rack-falcon.log index 4f573889b..60cd1ae6c 100644 --- a/site/static/logs/pipelined/4096/rack-falcon.log +++ b/site/static/logs/pipelined/4096/rack-falcon.log @@ -1,3417 +1,3417 @@ -[httparena] container log was 15489767 bytes and has been +[httparena] container log was 15991319 bytes and has been [httparena] truncated to the last 8000000; a framework that [httparena] logs per request is usually the cause. -","object_id":1824,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":39,"fiber_id":1928,"pid":39,"subject":"Async::Task","object_id":1936,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":183,"fiber_id":2648,"pid":183,"subject":"Async::Task","object_id":2656,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":90,"fiber_id":1944,"pid":90,"subject":"Async::Task","object_id":1952,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":129,"fiber_id":1992,"pid":129,"subject":"Async::Task","object_id":2000,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":93,"fiber_id":2136,"pid":93,"subject":"Async::Task","object_id":2144,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":72,"fiber_id":2008,"pid":72,"subject":"Async::Task","object_id":2016,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":141,"fiber_id":2392,"pid":141,"subject":"Async::Task","object_id":2400,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":156,"fiber_id":2488,"pid":156,"subject":"Async::Task","object_id":2496,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":123,"fiber_id":2280,"pid":123,"subject":"Async::Task","object_id":2288,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":132,"fiber_id":2504,"pid":132,"subject":"Async::Task","object_id":2512,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":162,"fiber_id":2664,"pid":162,"subject":"Async::Task","object_id":2672,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":15,"fiber_id":1752,"pid":15,"subject":"Async::Task","object_id":1760,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":108,"fiber_id":2120,"pid":108,"subject":"Async::Task","object_id":2128,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":36,"fiber_id":1832,"pid":36,"subject":"Async::Task","object_id":1840,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":81,"fiber_id":1912,"pid":81,"subject":"Async::Task","object_id":1920,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":78,"fiber_id":2120,"pid":78,"subject":"Async::Task","object_id":2128,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":27,"fiber_id":1784,"pid":27,"subject":"Async::Task","object_id":1792,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":24,"fiber_id":1784,"pid":24,"subject":"Async::Task","object_id":1792,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":165,"fiber_id":2888,"pid":165,"subject":"Async::Task","object_id":2896,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":60,"fiber_id":2008,"pid":60,"subject":"Async::Task","object_id":2016,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":90,"fiber_id":1960,"pid":90,"subject":"Async::Task","object_id":1968,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":36,"fiber_id":1848,"pid":36,"subject":"Async::Task","object_id":1856,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":15,"fiber_id":1768,"pid":15,"subject":"Async::Task","object_id":1776,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":132,"fiber_id":2520,"pid":132,"subject":"Async::Task","object_id":2528,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":81,"fiber_id":1928,"pid":81,"subject":"Async::Task","object_id":1936,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":78,"fiber_id":2136,"pid":78,"subject":"Async::Task","object_id":2144,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":183,"fiber_id":2664,"pid":183,"subject":"Async::Task","object_id":2672,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":108,"fiber_id":2136,"pid":108,"subject":"Async::Task","object_id":2144,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":165,"fiber_id":2904,"pid":165,"subject":"Async::Task","object_id":2912,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":36,"fiber_id":1864,"pid":36,"subject":"Async::Task","object_id":1872,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":15,"fiber_id":1784,"pid":15,"subject":"Async::Task","object_id":1792,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":195,"fiber_id":3112,"pid":195,"subject":"Async::Task","object_id":3120,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":81,"fiber_id":1944,"pid":81,"subject":"Async::Task","object_id":1952,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":75,"fiber_id":1800,"pid":75,"subject":"Async::Task","object_id":1808,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":90,"fiber_id":1976,"pid":90,"subject":"Async::Task","object_id":1984,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":177,"fiber_id":2808,"pid":177,"subject":"Async::Task","object_id":2816,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":84,"fiber_id":2104,"pid":84,"subject":"Async::Task","object_id":2112,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":60,"fiber_id":2024,"pid":60,"subject":"Async::Task","object_id":2032,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":111,"fiber_id":2280,"pid":111,"subject":"Async::Task","object_id":2288,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":120,"fiber_id":2424,"pid":120,"subject":"Async::Task","object_id":2432,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":165,"fiber_id":2920,"pid":165,"subject":"Async::Task","object_id":2928,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":138,"fiber_id":2008,"pid":138,"subject":"Async::Task","object_id":2016,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":186,"fiber_id":2760,"pid":186,"subject":"Async::Task","object_id":2768,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":75,"fiber_id":1816,"pid":75,"subject":"Async::Task","object_id":1824,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":93,"fiber_id":2152,"pid":93,"subject":"Async::Task","object_id":2160,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":177,"fiber_id":2824,"pid":177,"subject":"Async::Task","object_id":2832,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":162,"fiber_id":2680,"pid":162,"subject":"Async::Task","object_id":2688,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":15,"fiber_id":1800,"pid":15,"subject":"Async::Task","object_id":1808,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":78,"fiber_id":2152,"pid":78,"subject":"Async::Task","object_id":2160,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":159,"fiber_id":2600,"pid":159,"subject":"Async::Task","object_id":2608,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":60,"fiber_id":2040,"pid":60,"subject":"Async::Task","object_id":2048,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":195,"fiber_id":3128,"pid":195,"subject":"Async::Task","object_id":3136,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":90,"fiber_id":1992,"pid":90,"subject":"Async::Task","object_id":2000,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":111,"fiber_id":2296,"pid":111,"subject":"Async::Task","object_id":2304,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":183,"fiber_id":2680,"pid":183,"subject":"Async::Task","object_id":2688,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":36,"fiber_id":1880,"pid":36,"subject":"Async::Task","object_id":1888,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":75,"fiber_id":1832,"pid":75,"subject":"Async::Task","object_id":1840,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":177,"fiber_id":2840,"pid":177,"subject":"Async::Task","object_id":2848,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":84,"fiber_id":2120,"pid":84,"subject":"Async::Task","object_id":2128,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":24,"fiber_id":1800,"pid":24,"subject":"Async::Task","object_id":1808,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":138,"fiber_id":2024,"pid":138,"subject":"Async::Task","object_id":2032,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":198,"fiber_id":2952,"pid":198,"subject":"Async::Task","object_id":2960,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":102,"fiber_id":2280,"pid":102,"subject":"Async::Task","object_id":2288,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":183,"fiber_id":2696,"pid":183,"subject":"Async::Task","object_id":2704,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":111,"fiber_id":2312,"pid":111,"subject":"Async::Task","object_id":2320,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":135,"fiber_id":2376,"pid":135,"subject":"Async::Task","object_id":2384,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":60,"fiber_id":2056,"pid":60,"subject":"Async::Task","object_id":2064,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":186,"fiber_id":2776,"pid":186,"subject":"Async::Task","object_id":2784,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":195,"fiber_id":3144,"pid":195,"subject":"Async::Task","object_id":3152,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":84,"fiber_id":2136,"pid":84,"subject":"Async::Task","object_id":2144,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":198,"fiber_id":2968,"pid":198,"subject":"Async::Task","object_id":2976,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":18,"fiber_id":1848,"pid":18,"subject":"Async::Task","object_id":1856,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":165,"fiber_id":2936,"pid":165,"subject":"Async::Task","object_id":2944,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":183,"fiber_id":2712,"pid":183,"subject":"Async::Task","object_id":2720,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":111,"fiber_id":2328,"pid":111,"subject":"Async::Task","object_id":2336,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":33,"fiber_id":1896,"pid":33,"subject":"Async::Task","object_id":1904,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":75,"fiber_id":1848,"pid":75,"subject":"Async::Task","object_id":1856,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":96,"fiber_id":2152,"pid":96,"subject":"Async::Task","object_id":2160,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":15,"fiber_id":1816,"pid":15,"subject":"Async::Task","object_id":1824,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":78,"fiber_id":2168,"pid":78,"subject":"Async::Task","object_id":2176,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":69,"fiber_id":1944,"pid":69,"subject":"Async::Task","object_id":1952,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":111,"fiber_id":2344,"pid":111,"subject":"Async::Task","object_id":2352,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":153,"fiber_id":2552,"pid":153,"subject":"Async::Task","object_id":2560,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":18,"fiber_id":1864,"pid":18,"subject":"Async::Task","object_id":1872,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":183,"fiber_id":2728,"pid":183,"subject":"Async::Task","object_id":2736,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":78,"fiber_id":2184,"pid":78,"subject":"Async::Task","object_id":2192,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":9,"fiber_id":1704,"pid":9,"subject":"Async::Task","object_id":1712,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":30,"fiber_id":1832,"pid":30,"subject":"Async::Task","object_id":1840,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":165,"fiber_id":2952,"pid":165,"subject":"Async::Task","object_id":2960,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":117,"fiber_id":2360,"pid":117,"subject":"Async::Task","object_id":2368,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":18,"fiber_id":1880,"pid":18,"subject":"Async::Task","object_id":1888,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":159,"fiber_id":2616,"pid":159,"subject":"Async::Task","object_id":2624,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":126,"fiber_id":2344,"pid":126,"subject":"Async::Task","object_id":2352,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":78,"fiber_id":2200,"pid":78,"subject":"Async::Task","object_id":2208,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":42,"fiber_id":1592,"pid":42,"subject":"Async::Task","object_id":1600,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":177,"fiber_id":2856,"pid":177,"subject":"Async::Task","object_id":2864,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":159,"fiber_id":2632,"pid":159,"subject":"Async::Task","object_id":2640,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":144,"fiber_id":2312,"pid":144,"subject":"Async::Task","object_id":2320,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":150,"fiber_id":2440,"pid":150,"subject":"Async::Task","object_id":2448,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":12,"fiber_id":1624,"pid":12,"subject":"Async::Task","object_id":1632,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":36,"fiber_id":1896,"pid":36,"subject":"Async::Task","object_id":1904,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":156,"fiber_id":2504,"pid":156,"subject":"Async::Task","object_id":2512,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":15,"fiber_id":1832,"pid":15,"subject":"Async::Task","object_id":1840,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":111,"fiber_id":2360,"pid":111,"subject":"Async::Task","object_id":2368,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":189,"fiber_id":2904,"pid":189,"subject":"Async::Task","object_id":2912,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":180,"fiber_id":3080,"pid":180,"subject":"Async::Task","object_id":3088,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":12,"fiber_id":1640,"pid":12,"subject":"Async::Task","object_id":1648,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":33,"fiber_id":1912,"pid":33,"subject":"Async::Task","object_id":1920,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":30,"fiber_id":1848,"pid":30,"subject":"Async::Task","object_id":1856,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":189,"fiber_id":2920,"pid":189,"subject":"Async::Task","object_id":2928,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":171,"fiber_id":2760,"pid":171,"subject":"Async::Task","object_id":2768,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":156,"fiber_id":2520,"pid":156,"subject":"Async::Task","object_id":2528,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":99,"fiber_id":2168,"pid":99,"subject":"Async::Task","object_id":2176,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":195,"fiber_id":3160,"pid":195,"subject":"Async::Task","object_id":3168,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":150,"fiber_id":2456,"pid":150,"subject":"Async::Task","object_id":2464,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":165,"fiber_id":2968,"pid":165,"subject":"Async::Task","object_id":2976,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":156,"fiber_id":2536,"pid":156,"subject":"Async::Task","object_id":2544,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":123,"fiber_id":2296,"pid":123,"subject":"Async::Task","object_id":2304,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":192,"fiber_id":2920,"pid":192,"subject":"Async::Task","object_id":2928,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":12,"fiber_id":1656,"pid":12,"subject":"Async::Task","object_id":1664,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":153,"fiber_id":2568,"pid":153,"subject":"Async::Task","object_id":2576,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":195,"fiber_id":3176,"pid":195,"subject":"Async::Task","object_id":3184,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":135,"fiber_id":2392,"pid":135,"subject":"Async::Task","object_id":2400,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":96,"fiber_id":2168,"pid":96,"subject":"Async::Task","object_id":2176,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":117,"fiber_id":2376,"pid":117,"subject":"Async::Task","object_id":2384,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":144,"fiber_id":2328,"pid":144,"subject":"Async::Task","object_id":2336,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":75,"fiber_id":1864,"pid":75,"subject":"Async::Task","object_id":1872,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":117,"fiber_id":2392,"pid":117,"subject":"Async::Task","object_id":2400,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":129,"fiber_id":2008,"pid":129,"subject":"Async::Task","object_id":2016,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":108,"fiber_id":2152,"pid":108,"subject":"Async::Task","object_id":2160,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":150,"fiber_id":2472,"pid":150,"subject":"Async::Task","object_id":2480,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":135,"fiber_id":2408,"pid":135,"subject":"Async::Task","object_id":2416,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":96,"fiber_id":2184,"pid":96,"subject":"Async::Task","object_id":2192,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":132,"fiber_id":2536,"pid":132,"subject":"Async::Task","object_id":2544,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":129,"fiber_id":2024,"pid":129,"subject":"Async::Task","object_id":2032,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":12,"fiber_id":1672,"pid":12,"subject":"Async::Task","object_id":1680,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":150,"fiber_id":2488,"pid":150,"subject":"Async::Task","object_id":2496,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":84,"fiber_id":2152,"pid":84,"subject":"Async::Task","object_id":2160,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":171,"fiber_id":2776,"pid":171,"subject":"Async::Task","object_id":2784,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":138,"fiber_id":2040,"pid":138,"subject":"Async::Task","object_id":2048,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":150,"fiber_id":2504,"pid":150,"subject":"Async::Task","object_id":2512,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":123,"fiber_id":2312,"pid":123,"subject":"Async::Task","object_id":2320,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":60,"fiber_id":2072,"pid":60,"subject":"Async::Task","object_id":2080,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":99,"fiber_id":2184,"pid":99,"subject":"Async::Task","object_id":2192,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":171,"fiber_id":2792,"pid":171,"subject":"Async::Task","object_id":2800,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":90,"fiber_id":2008,"pid":90,"subject":"Async::Task","object_id":2016,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":147,"fiber_id":2632,"pid":147,"subject":"Async::Task","object_id":2640,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":57,"fiber_id":2024,"pid":57,"subject":"Async::Task","object_id":2032,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":162,"fiber_id":2696,"pid":162,"subject":"Async::Task","object_id":2704,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":141,"fiber_id":2408,"pid":141,"subject":"Async::Task","object_id":2416,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":135,"fiber_id":2424,"pid":135,"subject":"Async::Task","object_id":2432,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":12,"fiber_id":1688,"pid":12,"subject":"Async::Task","object_id":1696,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":72,"fiber_id":2024,"pid":72,"subject":"Async::Task","object_id":2032,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":48,"fiber_id":1992,"pid":48,"subject":"Async::Task","object_id":2000,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":171,"fiber_id":2808,"pid":171,"subject":"Async::Task","object_id":2816,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":174,"fiber_id":2888,"pid":174,"subject":"Async::Task","object_id":2896,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":132,"fiber_id":2552,"pid":132,"subject":"Async::Task","object_id":2560,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":138,"fiber_id":2056,"pid":138,"subject":"Async::Task","object_id":2064,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":57,"fiber_id":2040,"pid":57,"subject":"Async::Task","object_id":2048,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":99,"fiber_id":2200,"pid":99,"subject":"Async::Task","object_id":2208,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":174,"fiber_id":2904,"pid":174,"subject":"Async::Task","object_id":2912,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":63,"fiber_id":1912,"pid":63,"subject":"Async::Task","object_id":1920,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":198,"fiber_id":2984,"pid":198,"subject":"Async::Task","object_id":2992,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":54,"fiber_id":1992,"pid":54,"subject":"Async::Task","object_id":2000,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":162,"fiber_id":2712,"pid":162,"subject":"Async::Task","object_id":2720,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":90,"fiber_id":2024,"pid":90,"subject":"Async::Task","object_id":2032,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":141,"fiber_id":2424,"pid":141,"subject":"Async::Task","object_id":2432,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":138,"fiber_id":2072,"pid":138,"subject":"Async::Task","object_id":2080,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":198,"fiber_id":3000,"pid":198,"subject":"Async::Task","object_id":3008,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":27,"fiber_id":1800,"pid":27,"subject":"Async::Task","object_id":1808,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":72,"fiber_id":2040,"pid":72,"subject":"Async::Task","object_id":2048,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":90,"fiber_id":2040,"pid":90,"subject":"Async::Task","object_id":2048,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":99,"fiber_id":2216,"pid":99,"subject":"Async::Task","object_id":2224,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":189,"fiber_id":2936,"pid":189,"subject":"Async::Task","object_id":2944,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":198,"fiber_id":3016,"pid":198,"subject":"Async::Task","object_id":3024,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":162,"fiber_id":2728,"pid":162,"subject":"Async::Task","object_id":2736,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":18,"fiber_id":1896,"pid":18,"subject":"Async::Task","object_id":1904,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":132,"fiber_id":2568,"pid":132,"subject":"Async::Task","object_id":2576,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":141,"fiber_id":2440,"pid":141,"subject":"Async::Task","object_id":2448,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":93,"fiber_id":2168,"pid":93,"subject":"Async::Task","object_id":2176,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":30,"fiber_id":1864,"pid":30,"subject":"Async::Task","object_id":1872,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":18,"fiber_id":1912,"pid":18,"subject":"Async::Task","object_id":1920,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":57,"fiber_id":2056,"pid":57,"subject":"Async::Task","object_id":2064,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":168,"fiber_id":2680,"pid":168,"subject":"Async::Task","object_id":2688,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":147,"fiber_id":2648,"pid":147,"subject":"Async::Task","object_id":2656,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":36,"fiber_id":1912,"pid":36,"subject":"Async::Task","object_id":1920,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":24,"fiber_id":1816,"pid":24,"subject":"Async::Task","object_id":1824,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":90,"fiber_id":2056,"pid":90,"subject":"Async::Task","object_id":2064,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":162,"fiber_id":2744,"pid":162,"subject":"Async::Task","object_id":2752,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":156,"fiber_id":2552,"pid":156,"subject":"Async::Task","object_id":2560,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":168,"fiber_id":2696,"pid":168,"subject":"Async::Task","object_id":2704,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":90,"fiber_id":2072,"pid":90,"subject":"Async::Task","object_id":2080,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":93,"fiber_id":2184,"pid":93,"subject":"Async::Task","object_id":2192,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":183,"fiber_id":2744,"pid":183,"subject":"Async::Task","object_id":2752,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":99,"fiber_id":2232,"pid":99,"subject":"Async::Task","object_id":2240,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":120,"fiber_id":2440,"pid":120,"subject":"Async::Task","object_id":2448,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":51,"fiber_id":1752,"pid":51,"subject":"Async::Task","object_id":1760,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":45,"fiber_id":1592,"pid":45,"subject":"Async::Task","object_id":1600,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":18,"fiber_id":1928,"pid":18,"subject":"Async::Task","object_id":1936,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":183,"fiber_id":2760,"pid":183,"subject":"Async::Task","object_id":2768,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":15,"fiber_id":1848,"pid":15,"subject":"Async::Task","object_id":1856,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":36,"fiber_id":1928,"pid":36,"subject":"Async::Task","object_id":1936,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":186,"fiber_id":2792,"pid":186,"subject":"Async::Task","object_id":2800,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":156,"fiber_id":2568,"pid":156,"subject":"Async::Task","object_id":2576,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":57,"fiber_id":2072,"pid":57,"subject":"Async::Task","object_id":2080,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":60,"fiber_id":2088,"pid":60,"subject":"Async::Task","object_id":2096,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":165,"fiber_id":2984,"pid":165,"subject":"Async::Task","object_id":2992,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":66,"fiber_id":2072,"pid":66,"subject":"Async::Task","object_id":2080,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":195,"fiber_id":3192,"pid":195,"subject":"Async::Task","object_id":3200,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":123,"fiber_id":2328,"pid":123,"subject":"Async::Task","object_id":2336,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":18,"fiber_id":1944,"pid":18,"subject":"Async::Task","object_id":1952,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":60,"fiber_id":2104,"pid":60,"subject":"Async::Task","object_id":2112,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":180,"fiber_id":3096,"pid":180,"subject":"Async::Task","object_id":3104,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":111,"fiber_id":2376,"pid":111,"subject":"Async::Task","object_id":2384,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":15,"fiber_id":1864,"pid":15,"subject":"Async::Task","object_id":1872,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":153,"fiber_id":2584,"pid":153,"subject":"Async::Task","object_id":2592,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":102,"fiber_id":2296,"pid":102,"subject":"Async::Task","object_id":2304,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":93,"fiber_id":2200,"pid":93,"subject":"Async::Task","object_id":2208,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":42,"fiber_id":1608,"pid":42,"subject":"Async::Task","object_id":1616,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":57,"fiber_id":2088,"pid":57,"subject":"Async::Task","object_id":2096,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":117,"fiber_id":2408,"pid":117,"subject":"Async::Task","object_id":2416,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":21,"fiber_id":1688,"pid":21,"subject":"Async::Task","object_id":1696,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":66,"fiber_id":2088,"pid":66,"subject":"Async::Task","object_id":2096,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":156,"fiber_id":2584,"pid":156,"subject":"Async::Task","object_id":2592,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":69,"fiber_id":1960,"pid":69,"subject":"Async::Task","object_id":1968,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":75,"fiber_id":1880,"pid":75,"subject":"Async::Task","object_id":1888,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":153,"fiber_id":2600,"pid":153,"subject":"Async::Task","object_id":2608,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":30,"fiber_id":1880,"pid":30,"subject":"Async::Task","object_id":1888,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":42,"fiber_id":1624,"pid":42,"subject":"Async::Task","object_id":1632,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":195,"fiber_id":3208,"pid":195,"subject":"Async::Task","object_id":3216,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":18,"fiber_id":1960,"pid":18,"subject":"Async::Task","object_id":1968,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":75,"fiber_id":1896,"pid":75,"subject":"Async::Task","object_id":1904,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":198,"fiber_id":3032,"pid":198,"subject":"Async::Task","object_id":3040,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":36,"fiber_id":1944,"pid":36,"subject":"Async::Task","object_id":1952,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":126,"fiber_id":2360,"pid":126,"subject":"Async::Task","object_id":2368,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":177,"fiber_id":2872,"pid":177,"subject":"Async::Task","object_id":2880,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":33,"fiber_id":1928,"pid":33,"subject":"Async::Task","object_id":1936,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":84,"fiber_id":2168,"pid":84,"subject":"Async::Task","object_id":2176,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":183,"fiber_id":2776,"pid":183,"subject":"Async::Task","object_id":2784,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":96,"fiber_id":2200,"pid":96,"subject":"Async::Task","object_id":2208,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":195,"fiber_id":3224,"pid":195,"subject":"Async::Task","object_id":3232,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":120,"fiber_id":2456,"pid":120,"subject":"Async::Task","object_id":2464,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":75,"fiber_id":1912,"pid":75,"subject":"Async::Task","object_id":1920,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":93,"fiber_id":2216,"pid":93,"subject":"Async::Task","object_id":2224,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":12,"fiber_id":1704,"pid":12,"subject":"Async::Task","object_id":1712,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":117,"fiber_id":2424,"pid":117,"subject":"Async::Task","object_id":2432,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":126,"fiber_id":2376,"pid":126,"subject":"Async::Task","object_id":2384,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":150,"fiber_id":2520,"pid":150,"subject":"Async::Task","object_id":2528,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":84,"fiber_id":2184,"pid":84,"subject":"Async::Task","object_id":2192,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":144,"fiber_id":2344,"pid":144,"subject":"Async::Task","object_id":2352,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":87,"fiber_id":2200,"pid":87,"subject":"Async::Task","object_id":2208,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":114,"fiber_id":2296,"pid":114,"subject":"Async::Task","object_id":2304,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":15,"fiber_id":1880,"pid":15,"subject":"Async::Task","object_id":1888,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":177,"fiber_id":2888,"pid":177,"subject":"Async::Task","object_id":2896,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":33,"fiber_id":1944,"pid":33,"subject":"Async::Task","object_id":1952,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":135,"fiber_id":2440,"pid":135,"subject":"Async::Task","object_id":2448,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":150,"fiber_id":2536,"pid":150,"subject":"Async::Task","object_id":2544,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":144,"fiber_id":2360,"pid":144,"subject":"Async::Task","object_id":2368,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":84,"fiber_id":2200,"pid":84,"subject":"Async::Task","object_id":2208,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":12,"fiber_id":1720,"pid":12,"subject":"Async::Task","object_id":1728,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":186,"fiber_id":2808,"pid":186,"subject":"Async::Task","object_id":2816,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":159,"fiber_id":2648,"pid":159,"subject":"Async::Task","object_id":2656,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":132,"fiber_id":2584,"pid":132,"subject":"Async::Task","object_id":2592,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":177,"fiber_id":2904,"pid":177,"subject":"Async::Task","object_id":2912,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":114,"fiber_id":2312,"pid":114,"subject":"Async::Task","object_id":2320,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":156,"fiber_id":2600,"pid":156,"subject":"Async::Task","object_id":2608,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":75,"fiber_id":1928,"pid":75,"subject":"Async::Task","object_id":1936,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":27,"fiber_id":1816,"pid":27,"subject":"Async::Task","object_id":1824,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":117,"fiber_id":2440,"pid":117,"subject":"Async::Task","object_id":2448,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":105,"fiber_id":2360,"pid":105,"subject":"Async::Task","object_id":2368,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":45,"fiber_id":1608,"pid":45,"subject":"Async::Task","object_id":1616,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":108,"fiber_id":2168,"pid":108,"subject":"Async::Task","object_id":2176,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":96,"fiber_id":2216,"pid":96,"subject":"Async::Task","object_id":2224,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":153,"fiber_id":2616,"pid":153,"subject":"Async::Task","object_id":2624,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":132,"fiber_id":2600,"pid":132,"subject":"Async::Task","object_id":2608,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":177,"fiber_id":2920,"pid":177,"subject":"Async::Task","object_id":2928,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":114,"fiber_id":2328,"pid":114,"subject":"Async::Task","object_id":2336,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":87,"fiber_id":2216,"pid":87,"subject":"Async::Task","object_id":2224,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":156,"fiber_id":2616,"pid":156,"subject":"Async::Task","object_id":2624,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":48,"fiber_id":2008,"pid":48,"subject":"Async::Task","object_id":2016,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":150,"fiber_id":2552,"pid":150,"subject":"Async::Task","object_id":2560,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":54,"fiber_id":2008,"pid":54,"subject":"Async::Task","object_id":2016,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":195,"fiber_id":3240,"pid":195,"subject":"Async::Task","object_id":3248,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":12,"fiber_id":1736,"pid":12,"subject":"Async::Task","object_id":1744,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":132,"fiber_id":2616,"pid":132,"subject":"Async::Task","object_id":2624,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":24,"fiber_id":1832,"pid":24,"subject":"Async::Task","object_id":1840,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":135,"fiber_id":2456,"pid":135,"subject":"Async::Task","object_id":2464,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":144,"fiber_id":2376,"pid":144,"subject":"Async::Task","object_id":2384,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":27,"fiber_id":1832,"pid":27,"subject":"Async::Task","object_id":1840,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":12,"fiber_id":1752,"pid":12,"subject":"Async::Task","object_id":1760,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":105,"fiber_id":2376,"pid":105,"subject":"Async::Task","object_id":2384,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":150,"fiber_id":2568,"pid":150,"subject":"Async::Task","object_id":2576,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":174,"fiber_id":2920,"pid":174,"subject":"Async::Task","object_id":2928,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":177,"fiber_id":2936,"pid":177,"subject":"Async::Task","object_id":2944,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":87,"fiber_id":2232,"pid":87,"subject":"Async::Task","object_id":2240,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":12,"fiber_id":1768,"pid":12,"subject":"Async::Task","object_id":1776,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":96,"fiber_id":2232,"pid":96,"subject":"Async::Task","object_id":2240,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":135,"fiber_id":2472,"pid":135,"subject":"Async::Task","object_id":2480,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":174,"fiber_id":2936,"pid":174,"subject":"Async::Task","object_id":2944,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":84,"fiber_id":2216,"pid":84,"subject":"Async::Task","object_id":2224,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":141,"fiber_id":2456,"pid":141,"subject":"Async::Task","object_id":2464,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":33,"fiber_id":1960,"pid":33,"subject":"Async::Task","object_id":1968,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":162,"fiber_id":2760,"pid":162,"subject":"Async::Task","object_id":2768,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":60,"fiber_id":2120,"pid":60,"subject":"Async::Task","object_id":2128,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":12,"fiber_id":1784,"pid":12,"subject":"Async::Task","object_id":1792,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":144,"fiber_id":2392,"pid":144,"subject":"Async::Task","object_id":2400,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":96,"fiber_id":2248,"pid":96,"subject":"Async::Task","object_id":2256,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":54,"fiber_id":2024,"pid":54,"subject":"Async::Task","object_id":2032,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":132,"fiber_id":2632,"pid":132,"subject":"Async::Task","object_id":2640,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":150,"fiber_id":2584,"pid":150,"subject":"Async::Task","object_id":2592,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":24,"fiber_id":1848,"pid":24,"subject":"Async::Task","object_id":1856,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":57,"fiber_id":2104,"pid":57,"subject":"Async::Task","object_id":2112,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":132,"fiber_id":2648,"pid":132,"subject":"Async::Task","object_id":2656,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":144,"fiber_id":2408,"pid":144,"subject":"Async::Task","object_id":2416,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":162,"fiber_id":2776,"pid":162,"subject":"Async::Task","object_id":2784,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":174,"fiber_id":2952,"pid":174,"subject":"Async::Task","object_id":2960,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":165,"fiber_id":3000,"pid":165,"subject":"Async::Task","object_id":3008,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":39,"fiber_id":1944,"pid":39,"subject":"Async::Task","object_id":1952,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":72,"fiber_id":2056,"pid":72,"subject":"Async::Task","object_id":2064,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":168,"fiber_id":2712,"pid":168,"subject":"Async::Task","object_id":2720,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":60,"fiber_id":2136,"pid":60,"subject":"Async::Task","object_id":2144,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":132,"fiber_id":2664,"pid":132,"subject":"Async::Task","object_id":2672,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":114,"fiber_id":2344,"pid":114,"subject":"Async::Task","object_id":2352,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":54,"fiber_id":2040,"pid":54,"subject":"Async::Task","object_id":2048,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":12,"fiber_id":1800,"pid":12,"subject":"Async::Task","object_id":1808,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":165,"fiber_id":3016,"pid":165,"subject":"Async::Task","object_id":3024,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":57,"fiber_id":2120,"pid":57,"subject":"Async::Task","object_id":2128,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":192,"fiber_id":2936,"pid":192,"subject":"Async::Task","object_id":2944,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":42,"fiber_id":1640,"pid":42,"subject":"Async::Task","object_id":1648,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":27,"fiber_id":1848,"pid":27,"subject":"Async::Task","object_id":1856,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":90,"fiber_id":2088,"pid":90,"subject":"Async::Task","object_id":2096,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":189,"fiber_id":2952,"pid":189,"subject":"Async::Task","object_id":2960,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":93,"fiber_id":2232,"pid":93,"subject":"Async::Task","object_id":2240,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":153,"fiber_id":2632,"pid":153,"subject":"Async::Task","object_id":2640,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":186,"fiber_id":2824,"pid":186,"subject":"Async::Task","object_id":2832,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":48,"fiber_id":2024,"pid":48,"subject":"Async::Task","object_id":2032,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":108,"fiber_id":2184,"pid":108,"subject":"Async::Task","object_id":2192,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":24,"fiber_id":1864,"pid":24,"subject":"Async::Task","object_id":1872,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":147,"fiber_id":2664,"pid":147,"subject":"Async::Task","object_id":2672,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":192,"fiber_id":2952,"pid":192,"subject":"Async::Task","object_id":2960,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":165,"fiber_id":3032,"pid":165,"subject":"Async::Task","object_id":3040,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":174,"fiber_id":2968,"pid":174,"subject":"Async::Task","object_id":2976,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":96,"fiber_id":2264,"pid":96,"subject":"Async::Task","object_id":2272,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":39,"fiber_id":1960,"pid":39,"subject":"Async::Task","object_id":1968,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":102,"fiber_id":2312,"pid":102,"subject":"Async::Task","object_id":2320,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":93,"fiber_id":2248,"pid":93,"subject":"Async::Task","object_id":2256,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":84,"fiber_id":2232,"pid":84,"subject":"Async::Task","object_id":2240,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":123,"fiber_id":2344,"pid":123,"subject":"Async::Task","object_id":2352,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":165,"fiber_id":3048,"pid":165,"subject":"Async::Task","object_id":3056,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":111,"fiber_id":2392,"pid":111,"subject":"Async::Task","object_id":2400,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":192,"fiber_id":2968,"pid":192,"subject":"Async::Task","object_id":2976,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":24,"fiber_id":1880,"pid":24,"subject":"Async::Task","object_id":1888,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":120,"fiber_id":2472,"pid":120,"subject":"Async::Task","object_id":2480,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":60,"fiber_id":2152,"pid":60,"subject":"Async::Task","object_id":2160,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":96,"fiber_id":2280,"pid":96,"subject":"Async::Task","object_id":2288,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":51,"fiber_id":1768,"pid":51,"subject":"Async::Task","object_id":1776,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":174,"fiber_id":2984,"pid":174,"subject":"Async::Task","object_id":2992,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":150,"fiber_id":2600,"pid":150,"subject":"Async::Task","object_id":2608,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":45,"fiber_id":1624,"pid":45,"subject":"Async::Task","object_id":1632,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":51,"fiber_id":1784,"pid":51,"subject":"Async::Task","object_id":1792,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":114,"fiber_id":2360,"pid":114,"subject":"Async::Task","object_id":2368,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":174,"fiber_id":3000,"pid":174,"subject":"Async::Task","object_id":3008,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":72,"fiber_id":2072,"pid":72,"subject":"Async::Task","object_id":2080,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":45,"fiber_id":1640,"pid":45,"subject":"Async::Task","object_id":1648,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":18,"fiber_id":1976,"pid":18,"subject":"Async::Task","object_id":1984,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":81,"fiber_id":1960,"pid":81,"subject":"Async::Task","object_id":1968,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":63,"fiber_id":1928,"pid":63,"subject":"Async::Task","object_id":1936,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":75,"fiber_id":1944,"pid":75,"subject":"Async::Task","object_id":1952,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":9,"fiber_id":1720,"pid":9,"subject":"Async::Task","object_id":1728,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":87,"fiber_id":2248,"pid":87,"subject":"Async::Task","object_id":2256,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":81,"fiber_id":1976,"pid":81,"subject":"Async::Task","object_id":1984,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":75,"fiber_id":1960,"pid":75,"subject":"Async::Task","object_id":1968,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":132,"fiber_id":2680,"pid":132,"subject":"Async::Task","object_id":2688,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":42,"fiber_id":1656,"pid":42,"subject":"Async::Task","object_id":1664,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":105,"fiber_id":2392,"pid":105,"subject":"Async::Task","object_id":2400,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":150,"fiber_id":2616,"pid":150,"subject":"Async::Task","object_id":2624,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":102,"fiber_id":2328,"pid":102,"subject":"Async::Task","object_id":2336,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":72,"fiber_id":2088,"pid":72,"subject":"Async::Task","object_id":2096,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":42,"fiber_id":1672,"pid":42,"subject":"Async::Task","object_id":1680,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":171,"fiber_id":2824,"pid":171,"subject":"Async::Task","object_id":2832,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":135,"fiber_id":2488,"pid":135,"subject":"Async::Task","object_id":2496,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":39,"fiber_id":1976,"pid":39,"subject":"Async::Task","object_id":1984,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":27,"fiber_id":1864,"pid":27,"subject":"Async::Task","object_id":1872,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":9,"fiber_id":1736,"pid":9,"subject":"Async::Task","object_id":1744,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":54,"fiber_id":2056,"pid":54,"subject":"Async::Task","object_id":2064,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":99,"fiber_id":2248,"pid":99,"subject":"Async::Task","object_id":2256,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":24,"fiber_id":1896,"pid":24,"subject":"Async::Task","object_id":1904,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":174,"fiber_id":3016,"pid":174,"subject":"Async::Task","object_id":3024,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":63,"fiber_id":1944,"pid":63,"subject":"Async::Task","object_id":1952,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":129,"fiber_id":2040,"pid":129,"subject":"Async::Task","object_id":2048,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":141,"fiber_id":2472,"pid":141,"subject":"Async::Task","object_id":2480,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":198,"fiber_id":3048,"pid":198,"subject":"Async::Task","object_id":3056,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":39,"fiber_id":1992,"pid":39,"subject":"Async::Task","object_id":2000,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":159,"fiber_id":2664,"pid":159,"subject":"Async::Task","object_id":2672,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":99,"fiber_id":2264,"pid":99,"subject":"Async::Task","object_id":2272,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":51,"fiber_id":1800,"pid":51,"subject":"Async::Task","object_id":1808,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":84,"fiber_id":2248,"pid":84,"subject":"Async::Task","object_id":2256,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":27,"fiber_id":1880,"pid":27,"subject":"Async::Task","object_id":1888,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":102,"fiber_id":2344,"pid":102,"subject":"Async::Task","object_id":2352,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":57,"fiber_id":2136,"pid":57,"subject":"Async::Task","object_id":2144,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":45,"fiber_id":1656,"pid":45,"subject":"Async::Task","object_id":1664,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":156,"fiber_id":2632,"pid":156,"subject":"Async::Task","object_id":2640,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":93,"fiber_id":2264,"pid":93,"subject":"Async::Task","object_id":2272,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":195,"fiber_id":3256,"pid":195,"subject":"Async::Task","object_id":3264,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":45,"fiber_id":1672,"pid":45,"subject":"Async::Task","object_id":1680,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":21,"fiber_id":1704,"pid":21,"subject":"Async::Task","object_id":1712,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":93,"fiber_id":2280,"pid":93,"subject":"Async::Task","object_id":2288,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":57,"fiber_id":2152,"pid":57,"subject":"Async::Task","object_id":2160,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":84,"fiber_id":2264,"pid":84,"subject":"Async::Task","object_id":2272,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":36,"fiber_id":1960,"pid":36,"subject":"Async::Task","object_id":1968,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":171,"fiber_id":2840,"pid":171,"subject":"Async::Task","object_id":2848,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":168,"fiber_id":2728,"pid":168,"subject":"Async::Task","object_id":2736,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":30,"fiber_id":1896,"pid":30,"subject":"Async::Task","object_id":1904,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":183,"fiber_id":2792,"pid":183,"subject":"Async::Task","object_id":2800,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":117,"fiber_id":2456,"pid":117,"subject":"Async::Task","object_id":2464,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":138,"fiber_id":2088,"pid":138,"subject":"Async::Task","object_id":2096,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":126,"fiber_id":2392,"pid":126,"subject":"Async::Task","object_id":2400,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":99,"fiber_id":2280,"pid":99,"subject":"Async::Task","object_id":2288,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":192,"fiber_id":2984,"pid":192,"subject":"Async::Task","object_id":2992,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":102,"fiber_id":2360,"pid":102,"subject":"Async::Task","object_id":2368,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":42,"fiber_id":1688,"pid":42,"subject":"Async::Task","object_id":1696,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":117,"fiber_id":2472,"pid":117,"subject":"Async::Task","object_id":2480,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":57,"fiber_id":2168,"pid":57,"subject":"Async::Task","object_id":2176,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":165,"fiber_id":3064,"pid":165,"subject":"Async::Task","object_id":3072,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":36,"fiber_id":1976,"pid":36,"subject":"Async::Task","object_id":1984,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":195,"fiber_id":3272,"pid":195,"subject":"Async::Task","object_id":3280,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":42,"fiber_id":1704,"pid":42,"subject":"Async::Task","object_id":1712,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":93,"fiber_id":2296,"pid":93,"subject":"Async::Task","object_id":2304,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":15,"fiber_id":1896,"pid":15,"subject":"Async::Task","object_id":1904,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":126,"fiber_id":2408,"pid":126,"subject":"Async::Task","object_id":2416,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":99,"fiber_id":2296,"pid":99,"subject":"Async::Task","object_id":2304,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":42,"fiber_id":1720,"pid":42,"subject":"Async::Task","object_id":1728,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":162,"fiber_id":2792,"pid":162,"subject":"Async::Task","object_id":2800,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":66,"fiber_id":2104,"pid":66,"subject":"Async::Task","object_id":2112,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":63,"fiber_id":1960,"pid":63,"subject":"Async::Task","object_id":1968,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":36,"fiber_id":1992,"pid":36,"subject":"Async::Task","object_id":2000,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":123,"fiber_id":2360,"pid":123,"subject":"Async::Task","object_id":2368,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":87,"fiber_id":2264,"pid":87,"subject":"Async::Task","object_id":2272,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":120,"fiber_id":2488,"pid":120,"subject":"Async::Task","object_id":2496,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":15,"fiber_id":1912,"pid":15,"subject":"Async::Task","object_id":1920,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":174,"fiber_id":3032,"pid":174,"subject":"Async::Task","object_id":3040,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":48,"fiber_id":2040,"pid":48,"subject":"Async::Task","object_id":2048,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":42,"fiber_id":1736,"pid":42,"subject":"Async::Task","object_id":1744,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":177,"fiber_id":2952,"pid":177,"subject":"Async::Task","object_id":2960,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":39,"fiber_id":2008,"pid":39,"subject":"Async::Task","object_id":2016,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":57,"fiber_id":2184,"pid":57,"subject":"Async::Task","object_id":2192,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":15,"fiber_id":1928,"pid":15,"subject":"Async::Task","object_id":1936,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":174,"fiber_id":3048,"pid":174,"subject":"Async::Task","object_id":3056,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":129,"fiber_id":2056,"pid":129,"subject":"Async::Task","object_id":2064,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":108,"fiber_id":2200,"pid":108,"subject":"Async::Task","object_id":2208,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":177,"fiber_id":2968,"pid":177,"subject":"Async::Task","object_id":2976,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":102,"fiber_id":2376,"pid":102,"subject":"Async::Task","object_id":2384,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":87,"fiber_id":2280,"pid":87,"subject":"Async::Task","object_id":2288,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":57,"fiber_id":2200,"pid":57,"subject":"Async::Task","object_id":2208,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":141,"fiber_id":2488,"pid":141,"subject":"Async::Task","object_id":2496,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":81,"fiber_id":1992,"pid":81,"subject":"Async::Task","object_id":2000,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":48,"fiber_id":2056,"pid":48,"subject":"Async::Task","object_id":2064,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":177,"fiber_id":2984,"pid":177,"subject":"Async::Task","object_id":2992,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":147,"fiber_id":2680,"pid":147,"subject":"Async::Task","object_id":2688,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":42,"fiber_id":1752,"pid":42,"subject":"Async::Task","object_id":1760,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":87,"fiber_id":2296,"pid":87,"subject":"Async::Task","object_id":2304,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":162,"fiber_id":2808,"pid":162,"subject":"Async::Task","object_id":2816,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":72,"fiber_id":2104,"pid":72,"subject":"Async::Task","object_id":2112,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":120,"fiber_id":2504,"pid":120,"subject":"Async::Task","object_id":2512,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":24,"fiber_id":1912,"pid":24,"subject":"Async::Task","object_id":1920,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":129,"fiber_id":2072,"pid":129,"subject":"Async::Task","object_id":2080,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":168,"fiber_id":2744,"pid":168,"subject":"Async::Task","object_id":2752,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":156,"fiber_id":2648,"pid":156,"subject":"Async::Task","object_id":2656,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":153,"fiber_id":2648,"pid":153,"subject":"Async::Task","object_id":2656,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":144,"fiber_id":2424,"pid":144,"subject":"Async::Task","object_id":2432,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":15,"fiber_id":1944,"pid":15,"subject":"Async::Task","object_id":1952,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":9,"fiber_id":1752,"pid":9,"subject":"Async::Task","object_id":1760,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":171,"fiber_id":2856,"pid":171,"subject":"Async::Task","object_id":2864,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":177,"fiber_id":3000,"pid":177,"subject":"Async::Task","object_id":3008,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":30,"fiber_id":1912,"pid":30,"subject":"Async::Task","object_id":1920,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":57,"fiber_id":2216,"pid":57,"subject":"Async::Task","object_id":2224,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":138,"fiber_id":2104,"pid":138,"subject":"Async::Task","object_id":2112,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":162,"fiber_id":2824,"pid":162,"subject":"Async::Task","object_id":2832,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":63,"fiber_id":1976,"pid":63,"subject":"Async::Task","object_id":1984,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":174,"fiber_id":3064,"pid":174,"subject":"Async::Task","object_id":3072,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":108,"fiber_id":2216,"pid":108,"subject":"Async::Task","object_id":2224,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":138,"fiber_id":2120,"pid":138,"subject":"Async::Task","object_id":2128,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":39,"fiber_id":2024,"pid":39,"subject":"Async::Task","object_id":2032,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":105,"fiber_id":2408,"pid":105,"subject":"Async::Task","object_id":2416,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":192,"fiber_id":3000,"pid":192,"subject":"Async::Task","object_id":3008,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":153,"fiber_id":2664,"pid":153,"subject":"Async::Task","object_id":2672,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":186,"fiber_id":2840,"pid":186,"subject":"Async::Task","object_id":2848,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":75,"fiber_id":1976,"pid":75,"subject":"Async::Task","object_id":1984,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":12,"fiber_id":1816,"pid":12,"subject":"Async::Task","object_id":1824,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":138,"fiber_id":2136,"pid":138,"subject":"Async::Task","object_id":2144,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":81,"fiber_id":2008,"pid":81,"subject":"Async::Task","object_id":2016,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":42,"fiber_id":1768,"pid":42,"subject":"Async::Task","object_id":1776,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":183,"fiber_id":2808,"pid":183,"subject":"Async::Task","object_id":2816,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":24,"fiber_id":1928,"pid":24,"subject":"Async::Task","object_id":1936,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":45,"fiber_id":1688,"pid":45,"subject":"Async::Task","object_id":1696,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":141,"fiber_id":2504,"pid":141,"subject":"Async::Task","object_id":2512,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":189,"fiber_id":2968,"pid":189,"subject":"Async::Task","object_id":2976,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":15,"fiber_id":1960,"pid":15,"subject":"Async::Task","object_id":1968,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":129,"fiber_id":2088,"pid":129,"subject":"Async::Task","object_id":2096,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":78,"fiber_id":2216,"pid":78,"subject":"Async::Task","object_id":2224,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":87,"fiber_id":2312,"pid":87,"subject":"Async::Task","object_id":2320,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":15,"fiber_id":1976,"pid":15,"subject":"Async::Task","object_id":1984,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":102,"fiber_id":2392,"pid":102,"subject":"Async::Task","object_id":2400,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":117,"fiber_id":2488,"pid":117,"subject":"Async::Task","object_id":2496,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":138,"fiber_id":2152,"pid":138,"subject":"Async::Task","object_id":2160,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":99,"fiber_id":2312,"pid":99,"subject":"Async::Task","object_id":2320,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":63,"fiber_id":1992,"pid":63,"subject":"Async::Task","object_id":2000,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":129,"fiber_id":2104,"pid":129,"subject":"Async::Task","object_id":2112,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":36,"fiber_id":2008,"pid":36,"subject":"Async::Task","object_id":2016,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":117,"fiber_id":2504,"pid":117,"subject":"Async::Task","object_id":2512,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":198,"fiber_id":3064,"pid":198,"subject":"Async::Task","object_id":3072,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":183,"fiber_id":2824,"pid":183,"subject":"Async::Task","object_id":2832,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":87,"fiber_id":2328,"pid":87,"subject":"Async::Task","object_id":2336,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":51,"fiber_id":1816,"pid":51,"subject":"Async::Task","object_id":1824,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":75,"fiber_id":1992,"pid":75,"subject":"Async::Task","object_id":2000,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":138,"fiber_id":2168,"pid":138,"subject":"Async::Task","object_id":2176,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":93,"fiber_id":2312,"pid":93,"subject":"Async::Task","object_id":2320,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":135,"fiber_id":2504,"pid":135,"subject":"Async::Task","object_id":2512,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":111,"fiber_id":2408,"pid":111,"subject":"Async::Task","object_id":2416,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":99,"fiber_id":2328,"pid":99,"subject":"Async::Task","object_id":2336,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":132,"fiber_id":2696,"pid":132,"subject":"Async::Task","object_id":2704,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":159,"fiber_id":2680,"pid":159,"subject":"Async::Task","object_id":2688,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":138,"fiber_id":2184,"pid":138,"subject":"Async::Task","object_id":2192,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":177,"fiber_id":3016,"pid":177,"subject":"Async::Task","object_id":3024,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":162,"fiber_id":2840,"pid":162,"subject":"Async::Task","object_id":2848,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":15,"fiber_id":1992,"pid":15,"subject":"Async::Task","object_id":2000,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":30,"fiber_id":1928,"pid":30,"subject":"Async::Task","object_id":1936,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":165,"fiber_id":3080,"pid":165,"subject":"Async::Task","object_id":3088,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":144,"fiber_id":2440,"pid":144,"subject":"Async::Task","object_id":2448,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":57,"fiber_id":2232,"pid":57,"subject":"Async::Task","object_id":2240,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":192,"fiber_id":3016,"pid":192,"subject":"Async::Task","object_id":3024,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":174,"fiber_id":3080,"pid":174,"subject":"Async::Task","object_id":3088,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":183,"fiber_id":2840,"pid":183,"subject":"Async::Task","object_id":2848,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":96,"fiber_id":2296,"pid":96,"subject":"Async::Task","object_id":2304,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":114,"fiber_id":2376,"pid":114,"subject":"Async::Task","object_id":2384,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":18,"fiber_id":1992,"pid":18,"subject":"Async::Task","object_id":2000,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":129,"fiber_id":2120,"pid":129,"subject":"Async::Task","object_id":2128,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":111,"fiber_id":2424,"pid":111,"subject":"Async::Task","object_id":2432,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":102,"fiber_id":2408,"pid":102,"subject":"Async::Task","object_id":2416,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":138,"fiber_id":2200,"pid":138,"subject":"Async::Task","object_id":2208,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":123,"fiber_id":2376,"pid":123,"subject":"Async::Task","object_id":2384,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":150,"fiber_id":2632,"pid":150,"subject":"Async::Task","object_id":2640,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":147,"fiber_id":2696,"pid":147,"subject":"Async::Task","object_id":2704,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":81,"fiber_id":2024,"pid":81,"subject":"Async::Task","object_id":2032,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":198,"fiber_id":3080,"pid":198,"subject":"Async::Task","object_id":3088,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":117,"fiber_id":2520,"pid":117,"subject":"Async::Task","object_id":2528,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":87,"fiber_id":2344,"pid":87,"subject":"Async::Task","object_id":2352,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":135,"fiber_id":2520,"pid":135,"subject":"Async::Task","object_id":2528,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":183,"fiber_id":2856,"pid":183,"subject":"Async::Task","object_id":2864,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":90,"fiber_id":2104,"pid":90,"subject":"Async::Task","object_id":2112,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":18,"fiber_id":2008,"pid":18,"subject":"Async::Task","object_id":2016,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":105,"fiber_id":2424,"pid":105,"subject":"Async::Task","object_id":2432,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":51,"fiber_id":1832,"pid":51,"subject":"Async::Task","object_id":1840,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":165,"fiber_id":3096,"pid":165,"subject":"Async::Task","object_id":3104,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":117,"fiber_id":2536,"pid":117,"subject":"Async::Task","object_id":2544,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":123,"fiber_id":2392,"pid":123,"subject":"Async::Task","object_id":2400,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":39,"fiber_id":2040,"pid":39,"subject":"Async::Task","object_id":2048,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":81,"fiber_id":2040,"pid":81,"subject":"Async::Task","object_id":2048,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":57,"fiber_id":2248,"pid":57,"subject":"Async::Task","object_id":2256,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":132,"fiber_id":2712,"pid":132,"subject":"Async::Task","object_id":2720,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":150,"fiber_id":2648,"pid":150,"subject":"Async::Task","object_id":2656,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":36,"fiber_id":2024,"pid":36,"subject":"Async::Task","object_id":2032,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":42,"fiber_id":1784,"pid":42,"subject":"Async::Task","object_id":1792,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":60,"fiber_id":2168,"pid":60,"subject":"Async::Task","object_id":2176,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":120,"fiber_id":2520,"pid":120,"subject":"Async::Task","object_id":2528,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":81,"fiber_id":2056,"pid":81,"subject":"Async::Task","object_id":2064,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":195,"fiber_id":3288,"pid":195,"subject":"Async::Task","object_id":3296,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":141,"fiber_id":2520,"pid":141,"subject":"Async::Task","object_id":2528,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":36,"fiber_id":2040,"pid":36,"subject":"Async::Task","object_id":2048,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":117,"fiber_id":2552,"pid":117,"subject":"Async::Task","object_id":2560,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":60,"fiber_id":2184,"pid":60,"subject":"Async::Task","object_id":2192,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":102,"fiber_id":2424,"pid":102,"subject":"Async::Task","object_id":2432,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":186,"fiber_id":2856,"pid":186,"subject":"Async::Task","object_id":2864,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":36,"fiber_id":2056,"pid":36,"subject":"Async::Task","object_id":2064,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":99,"fiber_id":2344,"pid":99,"subject":"Async::Task","object_id":2352,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":63,"fiber_id":2008,"pid":63,"subject":"Async::Task","object_id":2016,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":150,"fiber_id":2664,"pid":150,"subject":"Async::Task","object_id":2672,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":180,"fiber_id":3112,"pid":180,"subject":"Async::Task","object_id":3120,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":165,"fiber_id":3112,"pid":165,"subject":"Async::Task","object_id":3120,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":72,"fiber_id":2120,"pid":72,"subject":"Async::Task","object_id":2128,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":177,"fiber_id":3032,"pid":177,"subject":"Async::Task","object_id":3040,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":51,"fiber_id":1848,"pid":51,"subject":"Async::Task","object_id":1856,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":45,"fiber_id":1704,"pid":45,"subject":"Async::Task","object_id":1712,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":66,"fiber_id":2120,"pid":66,"subject":"Async::Task","object_id":2128,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":33,"fiber_id":1976,"pid":33,"subject":"Async::Task","object_id":1984,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":129,"fiber_id":2136,"pid":129,"subject":"Async::Task","object_id":2144,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":138,"fiber_id":2216,"pid":138,"subject":"Async::Task","object_id":2224,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":21,"fiber_id":1720,"pid":21,"subject":"Async::Task","object_id":1728,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":195,"fiber_id":3304,"pid":195,"subject":"Async::Task","object_id":3312,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":186,"fiber_id":2872,"pid":186,"subject":"Async::Task","object_id":2880,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":174,"fiber_id":3096,"pid":174,"subject":"Async::Task","object_id":3104,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":45,"fiber_id":1720,"pid":45,"subject":"Async::Task","object_id":1728,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":159,"fiber_id":2696,"pid":159,"subject":"Async::Task","object_id":2704,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":30,"fiber_id":1944,"pid":30,"subject":"Async::Task","object_id":1952,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":117,"fiber_id":2568,"pid":117,"subject":"Async::Task","object_id":2576,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":129,"fiber_id":2152,"pid":129,"subject":"Async::Task","object_id":2160,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":138,"fiber_id":2232,"pid":138,"subject":"Async::Task","object_id":2240,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":39,"fiber_id":2056,"pid":39,"subject":"Async::Task","object_id":2064,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":174,"fiber_id":3112,"pid":174,"subject":"Async::Task","object_id":3120,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":78,"fiber_id":2232,"pid":78,"subject":"Async::Task","object_id":2240,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":42,"fiber_id":1800,"pid":42,"subject":"Async::Task","object_id":1808,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":162,"fiber_id":2856,"pid":162,"subject":"Async::Task","object_id":2864,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":9,"fiber_id":1768,"pid":9,"subject":"Async::Task","object_id":1776,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":138,"fiber_id":2248,"pid":138,"subject":"Async::Task","object_id":2256,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":78,"fiber_id":2248,"pid":78,"subject":"Async::Task","object_id":2256,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":15,"fiber_id":2008,"pid":15,"subject":"Async::Task","object_id":2016,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":18,"fiber_id":2024,"pid":18,"subject":"Async::Task","object_id":2032,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":153,"fiber_id":2680,"pid":153,"subject":"Async::Task","object_id":2688,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":129,"fiber_id":2168,"pid":129,"subject":"Async::Task","object_id":2176,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":45,"fiber_id":1736,"pid":45,"subject":"Async::Task","object_id":1744,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":105,"fiber_id":2440,"pid":105,"subject":"Async::Task","object_id":2448,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":195,"fiber_id":3320,"pid":195,"subject":"Async::Task","object_id":3328,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":150,"fiber_id":2680,"pid":150,"subject":"Async::Task","object_id":2688,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":63,"fiber_id":2024,"pid":63,"subject":"Async::Task","object_id":2032,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":78,"fiber_id":2264,"pid":78,"subject":"Async::Task","object_id":2272,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":117,"fiber_id":2584,"pid":117,"subject":"Async::Task","object_id":2592,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":87,"fiber_id":2360,"pid":87,"subject":"Async::Task","object_id":2368,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":96,"fiber_id":2312,"pid":96,"subject":"Async::Task","object_id":2320,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":75,"fiber_id":2008,"pid":75,"subject":"Async::Task","object_id":2016,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":141,"fiber_id":2536,"pid":141,"subject":"Async::Task","object_id":2544,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":138,"fiber_id":2264,"pid":138,"subject":"Async::Task","object_id":2272,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":63,"fiber_id":2040,"pid":63,"subject":"Async::Task","object_id":2048,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":189,"fiber_id":2984,"pid":189,"subject":"Async::Task","object_id":2992,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":9,"fiber_id":1784,"pid":9,"subject":"Async::Task","object_id":1792,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":15,"fiber_id":2024,"pid":15,"subject":"Async::Task","object_id":2032,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":36,"fiber_id":2072,"pid":36,"subject":"Async::Task","object_id":2080,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":180,"fiber_id":3128,"pid":180,"subject":"Async::Task","object_id":3136,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":42,"fiber_id":1816,"pid":42,"subject":"Async::Task","object_id":1824,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":138,"fiber_id":2280,"pid":138,"subject":"Async::Task","object_id":2288,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":9,"fiber_id":1800,"pid":9,"subject":"Async::Task","object_id":1808,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":54,"fiber_id":2072,"pid":54,"subject":"Async::Task","object_id":2080,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":75,"fiber_id":2024,"pid":75,"subject":"Async::Task","object_id":2032,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":45,"fiber_id":1752,"pid":45,"subject":"Async::Task","object_id":1760,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":174,"fiber_id":3128,"pid":174,"subject":"Async::Task","object_id":3136,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":90,"fiber_id":2120,"pid":90,"subject":"Async::Task","object_id":2128,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":129,"fiber_id":2184,"pid":129,"subject":"Async::Task","object_id":2192,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":45,"fiber_id":1768,"pid":45,"subject":"Async::Task","object_id":1776,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":150,"fiber_id":2696,"pid":150,"subject":"Async::Task","object_id":2704,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":117,"fiber_id":2600,"pid":117,"subject":"Async::Task","object_id":2608,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":12,"fiber_id":1832,"pid":12,"subject":"Async::Task","object_id":1840,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":63,"fiber_id":2056,"pid":63,"subject":"Async::Task","object_id":2064,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":189,"fiber_id":3000,"pid":189,"subject":"Async::Task","object_id":3008,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":84,"fiber_id":2280,"pid":84,"subject":"Async::Task","object_id":2288,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":75,"fiber_id":2040,"pid":75,"subject":"Async::Task","object_id":2048,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":108,"fiber_id":2232,"pid":108,"subject":"Async::Task","object_id":2240,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":150,"fiber_id":2712,"pid":150,"subject":"Async::Task","object_id":2720,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":141,"fiber_id":2552,"pid":141,"subject":"Async::Task","object_id":2560,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":114,"fiber_id":2392,"pid":114,"subject":"Async::Task","object_id":2400,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":54,"fiber_id":2088,"pid":54,"subject":"Async::Task","object_id":2096,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":99,"fiber_id":2360,"pid":99,"subject":"Async::Task","object_id":2368,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":84,"fiber_id":2296,"pid":84,"subject":"Async::Task","object_id":2304,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":24,"fiber_id":1944,"pid":24,"subject":"Async::Task","object_id":1952,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":180,"fiber_id":3144,"pid":180,"subject":"Async::Task","object_id":3152,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":96,"fiber_id":2328,"pid":96,"subject":"Async::Task","object_id":2336,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":165,"fiber_id":3128,"pid":165,"subject":"Async::Task","object_id":3136,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":90,"fiber_id":2136,"pid":90,"subject":"Async::Task","object_id":2144,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":84,"fiber_id":2312,"pid":84,"subject":"Async::Task","object_id":2320,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":42,"fiber_id":1832,"pid":42,"subject":"Async::Task","object_id":1840,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":12,"fiber_id":1848,"pid":12,"subject":"Async::Task","object_id":1856,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":84,"fiber_id":2328,"pid":84,"subject":"Async::Task","object_id":2336,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":153,"fiber_id":2696,"pid":153,"subject":"Async::Task","object_id":2704,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":147,"fiber_id":2712,"pid":147,"subject":"Async::Task","object_id":2720,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":18,"fiber_id":2040,"pid":18,"subject":"Async::Task","object_id":2048,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":180,"fiber_id":3160,"pid":180,"subject":"Async::Task","object_id":3168,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":171,"fiber_id":2872,"pid":171,"subject":"Async::Task","object_id":2880,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":111,"fiber_id":2440,"pid":111,"subject":"Async::Task","object_id":2448,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":198,"fiber_id":3096,"pid":198,"subject":"Async::Task","object_id":3104,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":90,"fiber_id":2152,"pid":90,"subject":"Async::Task","object_id":2160,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":180,"fiber_id":3176,"pid":180,"subject":"Async::Task","object_id":3184,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":42,"fiber_id":1848,"pid":42,"subject":"Async::Task","object_id":1856,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":66,"fiber_id":2136,"pid":66,"subject":"Async::Task","object_id":2144,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":171,"fiber_id":2888,"pid":171,"subject":"Async::Task","object_id":2896,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":111,"fiber_id":2456,"pid":111,"subject":"Async::Task","object_id":2464,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":108,"fiber_id":2248,"pid":108,"subject":"Async::Task","object_id":2256,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":165,"fiber_id":3144,"pid":165,"subject":"Async::Task","object_id":3152,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":102,"fiber_id":2440,"pid":102,"subject":"Async::Task","object_id":2448,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":75,"fiber_id":2056,"pid":75,"subject":"Async::Task","object_id":2064,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":138,"fiber_id":2296,"pid":138,"subject":"Async::Task","object_id":2304,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":174,"fiber_id":3144,"pid":174,"subject":"Async::Task","object_id":3152,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":96,"fiber_id":2344,"pid":96,"subject":"Async::Task","object_id":2352,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":198,"fiber_id":3112,"pid":198,"subject":"Async::Task","object_id":3120,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":183,"fiber_id":2872,"pid":183,"subject":"Async::Task","object_id":2880,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":99,"fiber_id":2376,"pid":99,"subject":"Async::Task","object_id":2384,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":159,"fiber_id":2712,"pid":159,"subject":"Async::Task","object_id":2720,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":168,"fiber_id":2760,"pid":168,"subject":"Async::Task","object_id":2768,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":15,"fiber_id":2040,"pid":15,"subject":"Async::Task","object_id":2048,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":78,"fiber_id":2280,"pid":78,"subject":"Async::Task","object_id":2288,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":12,"fiber_id":1864,"pid":12,"subject":"Async::Task","object_id":1872,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":18,"fiber_id":2056,"pid":18,"subject":"Async::Task","object_id":2064,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":192,"fiber_id":3032,"pid":192,"subject":"Async::Task","object_id":3040,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":138,"fiber_id":2312,"pid":138,"subject":"Async::Task","object_id":2320,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":135,"fiber_id":2536,"pid":135,"subject":"Async::Task","object_id":2544,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":129,"fiber_id":2200,"pid":129,"subject":"Async::Task","object_id":2208,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":165,"fiber_id":3160,"pid":165,"subject":"Async::Task","object_id":3168,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":30,"fiber_id":1960,"pid":30,"subject":"Async::Task","object_id":1968,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":78,"fiber_id":2296,"pid":78,"subject":"Async::Task","object_id":2304,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":18,"fiber_id":2072,"pid":18,"subject":"Async::Task","object_id":2080,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":198,"fiber_id":3128,"pid":198,"subject":"Async::Task","object_id":3136,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":9,"fiber_id":1816,"pid":9,"subject":"Async::Task","object_id":1824,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":69,"fiber_id":1976,"pid":69,"subject":"Async::Task","object_id":1984,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":66,"fiber_id":2152,"pid":66,"subject":"Async::Task","object_id":2160,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":144,"fiber_id":2456,"pid":144,"subject":"Async::Task","object_id":2464,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":84,"fiber_id":2344,"pid":84,"subject":"Async::Task","object_id":2352,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":177,"fiber_id":3048,"pid":177,"subject":"Async::Task","object_id":3056,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":186,"fiber_id":2888,"pid":186,"subject":"Async::Task","object_id":2896,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":18,"fiber_id":2088,"pid":18,"subject":"Async::Task","object_id":2096,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":15,"fiber_id":2056,"pid":15,"subject":"Async::Task","object_id":2064,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":129,"fiber_id":2216,"pid":129,"subject":"Async::Task","object_id":2224,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":156,"fiber_id":2664,"pid":156,"subject":"Async::Task","object_id":2672,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":159,"fiber_id":2728,"pid":159,"subject":"Async::Task","object_id":2736,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":42,"fiber_id":1864,"pid":42,"subject":"Async::Task","object_id":1872,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":168,"fiber_id":2776,"pid":168,"subject":"Async::Task","object_id":2784,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":18,"fiber_id":2104,"pid":18,"subject":"Async::Task","object_id":2112,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":195,"fiber_id":3336,"pid":195,"subject":"Async::Task","object_id":3344,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":126,"fiber_id":2424,"pid":126,"subject":"Async::Task","object_id":2432,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":78,"fiber_id":2312,"pid":78,"subject":"Async::Task","object_id":2320,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":48,"fiber_id":2072,"pid":48,"subject":"Async::Task","object_id":2080,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":198,"fiber_id":3144,"pid":198,"subject":"Async::Task","object_id":3152,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":180,"fiber_id":3192,"pid":180,"subject":"Async::Task","object_id":3200,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":168,"fiber_id":2792,"pid":168,"subject":"Async::Task","object_id":2800,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":96,"fiber_id":2360,"pid":96,"subject":"Async::Task","object_id":2368,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":54,"fiber_id":2104,"pid":54,"subject":"Async::Task","object_id":2112,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":129,"fiber_id":2232,"pid":129,"subject":"Async::Task","object_id":2240,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":138,"fiber_id":2328,"pid":138,"subject":"Async::Task","object_id":2336,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":66,"fiber_id":2168,"pid":66,"subject":"Async::Task","object_id":2176,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":78,"fiber_id":2328,"pid":78,"subject":"Async::Task","object_id":2336,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":135,"fiber_id":2552,"pid":135,"subject":"Async::Task","object_id":2560,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":186,"fiber_id":2904,"pid":186,"subject":"Async::Task","object_id":2912,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":21,"fiber_id":1736,"pid":21,"subject":"Async::Task","object_id":1744,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":168,"fiber_id":2808,"pid":168,"subject":"Async::Task","object_id":2816,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":45,"fiber_id":1784,"pid":45,"subject":"Async::Task","object_id":1792,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":63,"fiber_id":2072,"pid":63,"subject":"Async::Task","object_id":2080,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":24,"fiber_id":1960,"pid":24,"subject":"Async::Task","object_id":1968,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":87,"fiber_id":2376,"pid":87,"subject":"Async::Task","object_id":2384,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":138,"fiber_id":2344,"pid":138,"subject":"Async::Task","object_id":2352,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":69,"fiber_id":1992,"pid":69,"subject":"Async::Task","object_id":2000,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":177,"fiber_id":3064,"pid":177,"subject":"Async::Task","object_id":3072,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":9,"fiber_id":1832,"pid":9,"subject":"Async::Task","object_id":1840,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":18,"fiber_id":2120,"pid":18,"subject":"Async::Task","object_id":2128,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":192,"fiber_id":3048,"pid":192,"subject":"Async::Task","object_id":3056,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":168,"fiber_id":2824,"pid":168,"subject":"Async::Task","object_id":2832,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":171,"fiber_id":2904,"pid":171,"subject":"Async::Task","object_id":2912,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":57,"fiber_id":2264,"pid":57,"subject":"Async::Task","object_id":2272,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":93,"fiber_id":2328,"pid":93,"subject":"Async::Task","object_id":2336,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":129,"fiber_id":2248,"pid":129,"subject":"Async::Task","object_id":2256,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":120,"fiber_id":2536,"pid":120,"subject":"Async::Task","object_id":2544,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":69,"fiber_id":2008,"pid":69,"subject":"Async::Task","object_id":2016,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":21,"fiber_id":1752,"pid":21,"subject":"Async::Task","object_id":1760,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":33,"fiber_id":1992,"pid":33,"subject":"Async::Task","object_id":2000,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":135,"fiber_id":2568,"pid":135,"subject":"Async::Task","object_id":2576,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":177,"fiber_id":3080,"pid":177,"subject":"Async::Task","object_id":3088,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":156,"fiber_id":2680,"pid":156,"subject":"Async::Task","object_id":2688,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":75,"fiber_id":2072,"pid":75,"subject":"Async::Task","object_id":2080,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":129,"fiber_id":2264,"pid":129,"subject":"Async::Task","object_id":2272,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":39,"fiber_id":2072,"pid":39,"subject":"Async::Task","object_id":2080,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":177,"fiber_id":3096,"pid":177,"subject":"Async::Task","object_id":3104,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":147,"fiber_id":2728,"pid":147,"subject":"Async::Task","object_id":2736,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":150,"fiber_id":2728,"pid":150,"subject":"Async::Task","object_id":2736,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":192,"fiber_id":3064,"pid":192,"subject":"Async::Task","object_id":3072,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":69,"fiber_id":2024,"pid":69,"subject":"Async::Task","object_id":2032,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":57,"fiber_id":2280,"pid":57,"subject":"Async::Task","object_id":2288,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":81,"fiber_id":2072,"pid":81,"subject":"Async::Task","object_id":2080,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":165,"fiber_id":3176,"pid":165,"subject":"Async::Task","object_id":3184,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":174,"fiber_id":3160,"pid":174,"subject":"Async::Task","object_id":3168,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":168,"fiber_id":2840,"pid":168,"subject":"Async::Task","object_id":2848,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":48,"fiber_id":2088,"pid":48,"subject":"Async::Task","object_id":2096,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":72,"fiber_id":2136,"pid":72,"subject":"Async::Task","object_id":2144,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":24,"fiber_id":1976,"pid":24,"subject":"Async::Task","object_id":1984,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":129,"fiber_id":2280,"pid":129,"subject":"Async::Task","object_id":2288,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":174,"fiber_id":3176,"pid":174,"subject":"Async::Task","object_id":3184,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":90,"fiber_id":2168,"pid":90,"subject":"Async::Task","object_id":2176,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":198,"fiber_id":3160,"pid":198,"subject":"Async::Task","object_id":3168,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":9,"fiber_id":1848,"pid":9,"subject":"Async::Task","object_id":1856,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":72,"fiber_id":2152,"pid":72,"subject":"Async::Task","object_id":2160,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":120,"fiber_id":2552,"pid":120,"subject":"Async::Task","object_id":2560,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":18,"fiber_id":2136,"pid":18,"subject":"Async::Task","object_id":2144,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":114,"fiber_id":2408,"pid":114,"subject":"Async::Task","object_id":2416,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":78,"fiber_id":2344,"pid":78,"subject":"Async::Task","object_id":2352,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":183,"fiber_id":2888,"pid":183,"subject":"Async::Task","object_id":2896,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":66,"fiber_id":2184,"pid":66,"subject":"Async::Task","object_id":2192,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":27,"fiber_id":1896,"pid":27,"subject":"Async::Task","object_id":1904,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":144,"fiber_id":2472,"pid":144,"subject":"Async::Task","object_id":2480,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":111,"fiber_id":2472,"pid":111,"subject":"Async::Task","object_id":2480,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":63,"fiber_id":2088,"pid":63,"subject":"Async::Task","object_id":2096,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":42,"fiber_id":1880,"pid":42,"subject":"Async::Task","object_id":1888,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":96,"fiber_id":2376,"pid":96,"subject":"Async::Task","object_id":2384,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":51,"fiber_id":1864,"pid":51,"subject":"Async::Task","object_id":1872,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":39,"fiber_id":2088,"pid":39,"subject":"Async::Task","object_id":2096,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":186,"fiber_id":2920,"pid":186,"subject":"Async::Task","object_id":2928,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":162,"fiber_id":2872,"pid":162,"subject":"Async::Task","object_id":2880,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":51,"fiber_id":1880,"pid":51,"subject":"Async::Task","object_id":1888,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":153,"fiber_id":2712,"pid":153,"subject":"Async::Task","object_id":2720,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":54,"fiber_id":2120,"pid":54,"subject":"Async::Task","object_id":2128,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":162,"fiber_id":2888,"pid":162,"subject":"Async::Task","object_id":2896,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":78,"fiber_id":2360,"pid":78,"subject":"Async::Task","object_id":2368,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":33,"fiber_id":2008,"pid":33,"subject":"Async::Task","object_id":2016,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":189,"fiber_id":3016,"pid":189,"subject":"Async::Task","object_id":3024,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":153,"fiber_id":2728,"pid":153,"subject":"Async::Task","object_id":2736,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":75,"fiber_id":2088,"pid":75,"subject":"Async::Task","object_id":2096,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":45,"fiber_id":1800,"pid":45,"subject":"Async::Task","object_id":1808,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":189,"fiber_id":3032,"pid":189,"subject":"Async::Task","object_id":3040,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":126,"fiber_id":2440,"pid":126,"subject":"Async::Task","object_id":2448,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":69,"fiber_id":2040,"pid":69,"subject":"Async::Task","object_id":2048,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":21,"fiber_id":1768,"pid":21,"subject":"Async::Task","object_id":1776,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":99,"fiber_id":2392,"pid":99,"subject":"Async::Task","object_id":2400,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":129,"fiber_id":2296,"pid":129,"subject":"Async::Task","object_id":2304,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":168,"fiber_id":2856,"pid":168,"subject":"Async::Task","object_id":2864,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":132,"fiber_id":2728,"pid":132,"subject":"Async::Task","object_id":2736,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":168,"fiber_id":2872,"pid":168,"subject":"Async::Task","object_id":2880,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":66,"fiber_id":2200,"pid":66,"subject":"Async::Task","object_id":2208,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":57,"fiber_id":2296,"pid":57,"subject":"Async::Task","object_id":2304,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":30,"fiber_id":1976,"pid":30,"subject":"Async::Task","object_id":1984,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":87,"fiber_id":2392,"pid":87,"subject":"Async::Task","object_id":2400,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":81,"fiber_id":2088,"pid":81,"subject":"Async::Task","object_id":2096,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":114,"fiber_id":2424,"pid":114,"subject":"Async::Task","object_id":2432,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":111,"fiber_id":2488,"pid":111,"subject":"Async::Task","object_id":2496,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":186,"fiber_id":2936,"pid":186,"subject":"Async::Task","object_id":2944,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":162,"fiber_id":2904,"pid":162,"subject":"Async::Task","object_id":2912,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":18,"fiber_id":2152,"pid":18,"subject":"Async::Task","object_id":2160,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":33,"fiber_id":2024,"pid":33,"subject":"Async::Task","object_id":2032,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":126,"fiber_id":2456,"pid":126,"subject":"Async::Task","object_id":2464,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":192,"fiber_id":3080,"pid":192,"subject":"Async::Task","object_id":3088,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":96,"fiber_id":2392,"pid":96,"subject":"Async::Task","object_id":2400,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":108,"fiber_id":2264,"pid":108,"subject":"Async::Task","object_id":2272,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":54,"fiber_id":2136,"pid":54,"subject":"Async::Task","object_id":2144,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":51,"fiber_id":1896,"pid":51,"subject":"Async::Task","object_id":1904,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":69,"fiber_id":2056,"pid":69,"subject":"Async::Task","object_id":2064,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":96,"fiber_id":2408,"pid":96,"subject":"Async::Task","object_id":2416,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":129,"fiber_id":2312,"pid":129,"subject":"Async::Task","object_id":2320,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":21,"fiber_id":1784,"pid":21,"subject":"Async::Task","object_id":1792,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":78,"fiber_id":2376,"pid":78,"subject":"Async::Task","object_id":2384,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":66,"fiber_id":2216,"pid":66,"subject":"Async::Task","object_id":2224,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":105,"fiber_id":2456,"pid":105,"subject":"Async::Task","object_id":2464,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":9,"fiber_id":1864,"pid":9,"subject":"Async::Task","object_id":1872,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":21,"fiber_id":1800,"pid":21,"subject":"Async::Task","object_id":1808,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":36,"fiber_id":2088,"pid":36,"subject":"Async::Task","object_id":2096,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":177,"fiber_id":3112,"pid":177,"subject":"Async::Task","object_id":3120,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":126,"fiber_id":2472,"pid":126,"subject":"Async::Task","object_id":2480,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":162,"fiber_id":2920,"pid":162,"subject":"Async::Task","object_id":2928,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":192,"fiber_id":3096,"pid":192,"subject":"Async::Task","object_id":3104,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":84,"fiber_id":2360,"pid":84,"subject":"Async::Task","object_id":2368,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":165,"fiber_id":3192,"pid":165,"subject":"Async::Task","object_id":3200,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":105,"fiber_id":2472,"pid":105,"subject":"Async::Task","object_id":2480,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":186,"fiber_id":2952,"pid":186,"subject":"Async::Task","object_id":2960,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":9,"fiber_id":1880,"pid":9,"subject":"Async::Task","object_id":1888,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":126,"fiber_id":2488,"pid":126,"subject":"Async::Task","object_id":2496,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":12,"fiber_id":1880,"pid":12,"subject":"Async::Task","object_id":1888,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":111,"fiber_id":2504,"pid":111,"subject":"Async::Task","object_id":2512,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":147,"fiber_id":2744,"pid":147,"subject":"Async::Task","object_id":2752,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":63,"fiber_id":2104,"pid":63,"subject":"Async::Task","object_id":2112,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":87,"fiber_id":2408,"pid":87,"subject":"Async::Task","object_id":2416,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":168,"fiber_id":2888,"pid":168,"subject":"Async::Task","object_id":2896,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":153,"fiber_id":2744,"pid":153,"subject":"Async::Task","object_id":2752,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":123,"fiber_id":2408,"pid":123,"subject":"Async::Task","object_id":2416,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":183,"fiber_id":2904,"pid":183,"subject":"Async::Task","object_id":2912,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":48,"fiber_id":2104,"pid":48,"subject":"Async::Task","object_id":2112,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":186,"fiber_id":2968,"pid":186,"subject":"Async::Task","object_id":2976,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":30,"fiber_id":1992,"pid":30,"subject":"Async::Task","object_id":2000,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":105,"fiber_id":2488,"pid":105,"subject":"Async::Task","object_id":2496,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":150,"fiber_id":2744,"pid":150,"subject":"Async::Task","object_id":2752,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":153,"fiber_id":2760,"pid":153,"subject":"Async::Task","object_id":2768,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":168,"fiber_id":2904,"pid":168,"subject":"Async::Task","object_id":2912,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":57,"fiber_id":2312,"pid":57,"subject":"Async::Task","object_id":2320,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":183,"fiber_id":2920,"pid":183,"subject":"Async::Task","object_id":2928,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":183,"fiber_id":2936,"pid":183,"subject":"Async::Task","object_id":2944,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":162,"fiber_id":2936,"pid":162,"subject":"Async::Task","object_id":2944,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":24,"fiber_id":1992,"pid":24,"subject":"Async::Task","object_id":2000,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":168,"fiber_id":2920,"pid":168,"subject":"Async::Task","object_id":2928,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":162,"fiber_id":2952,"pid":162,"subject":"Async::Task","object_id":2960,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":156,"fiber_id":2696,"pid":156,"subject":"Async::Task","object_id":2704,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":135,"fiber_id":2584,"pid":135,"subject":"Async::Task","object_id":2592,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":108,"fiber_id":2280,"pid":108,"subject":"Async::Task","object_id":2288,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":114,"fiber_id":2440,"pid":114,"subject":"Async::Task","object_id":2448,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":24,"fiber_id":2008,"pid":24,"subject":"Async::Task","object_id":2016,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":36,"fiber_id":2104,"pid":36,"subject":"Async::Task","object_id":2112,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":81,"fiber_id":2104,"pid":81,"subject":"Async::Task","object_id":2112,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":189,"fiber_id":3048,"pid":189,"subject":"Async::Task","object_id":3056,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":180,"fiber_id":3208,"pid":180,"subject":"Async::Task","object_id":3216,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":108,"fiber_id":2296,"pid":108,"subject":"Async::Task","object_id":2304,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":69,"fiber_id":2072,"pid":69,"subject":"Async::Task","object_id":2080,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":90,"fiber_id":2184,"pid":90,"subject":"Async::Task","object_id":2192,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":36,"fiber_id":2120,"pid":36,"subject":"Async::Task","object_id":2128,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":72,"fiber_id":2168,"pid":72,"subject":"Async::Task","object_id":2176,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":18,"fiber_id":2168,"pid":18,"subject":"Async::Task","object_id":2176,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":24,"fiber_id":2024,"pid":24,"subject":"Async::Task","object_id":2032,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":180,"fiber_id":3224,"pid":180,"subject":"Async::Task","object_id":3232,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":159,"fiber_id":2744,"pid":159,"subject":"Async::Task","object_id":2752,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":162,"fiber_id":2968,"pid":162,"subject":"Async::Task","object_id":2976,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":21,"fiber_id":1816,"pid":21,"subject":"Async::Task","object_id":1824,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":93,"fiber_id":2344,"pid":93,"subject":"Async::Task","object_id":2352,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":108,"fiber_id":2312,"pid":108,"subject":"Async::Task","object_id":2320,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":36,"fiber_id":2136,"pid":36,"subject":"Async::Task","object_id":2144,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":126,"fiber_id":2504,"pid":126,"subject":"Async::Task","object_id":2512,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":24,"fiber_id":2040,"pid":24,"subject":"Async::Task","object_id":2048,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":189,"fiber_id":3064,"pid":189,"subject":"Async::Task","object_id":3072,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":57,"fiber_id":2328,"pid":57,"subject":"Async::Task","object_id":2336,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":114,"fiber_id":2456,"pid":114,"subject":"Async::Task","object_id":2464,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":72,"fiber_id":2184,"pid":72,"subject":"Async::Task","object_id":2192,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":108,"fiber_id":2328,"pid":108,"subject":"Async::Task","object_id":2336,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":186,"fiber_id":2984,"pid":186,"subject":"Async::Task","object_id":2992,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":63,"fiber_id":2120,"pid":63,"subject":"Async::Task","object_id":2128,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":72,"fiber_id":2200,"pid":72,"subject":"Async::Task","object_id":2208,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":111,"fiber_id":2520,"pid":111,"subject":"Async::Task","object_id":2528,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":87,"fiber_id":2424,"pid":87,"subject":"Async::Task","object_id":2432,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":189,"fiber_id":3080,"pid":189,"subject":"Async::Task","object_id":3088,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":150,"fiber_id":2760,"pid":150,"subject":"Async::Task","object_id":2768,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":114,"fiber_id":2472,"pid":114,"subject":"Async::Task","object_id":2480,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":33,"fiber_id":2040,"pid":33,"subject":"Async::Task","object_id":2048,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":99,"fiber_id":2408,"pid":99,"subject":"Async::Task","object_id":2416,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":45,"fiber_id":1816,"pid":45,"subject":"Async::Task","object_id":1824,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":81,"fiber_id":2120,"pid":81,"subject":"Async::Task","object_id":2128,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":132,"fiber_id":2744,"pid":132,"subject":"Async::Task","object_id":2752,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":111,"fiber_id":2536,"pid":111,"subject":"Async::Task","object_id":2544,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":120,"fiber_id":2568,"pid":120,"subject":"Async::Task","object_id":2576,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":54,"fiber_id":2152,"pid":54,"subject":"Async::Task","object_id":2160,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":102,"fiber_id":2456,"pid":102,"subject":"Async::Task","object_id":2464,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":159,"fiber_id":2760,"pid":159,"subject":"Async::Task","object_id":2768,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":96,"fiber_id":2424,"pid":96,"subject":"Async::Task","object_id":2432,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":30,"fiber_id":2008,"pid":30,"subject":"Async::Task","object_id":2016,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":69,"fiber_id":2088,"pid":69,"subject":"Async::Task","object_id":2096,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":153,"fiber_id":2776,"pid":153,"subject":"Async::Task","object_id":2784,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":15,"fiber_id":2072,"pid":15,"subject":"Async::Task","object_id":2080,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":39,"fiber_id":2104,"pid":39,"subject":"Async::Task","object_id":2112,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":156,"fiber_id":2712,"pid":156,"subject":"Async::Task","object_id":2720,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":111,"fiber_id":2552,"pid":111,"subject":"Async::Task","object_id":2560,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":78,"fiber_id":2392,"pid":78,"subject":"Async::Task","object_id":2400,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":30,"fiber_id":2024,"pid":30,"subject":"Async::Task","object_id":2032,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":144,"fiber_id":2488,"pid":144,"subject":"Async::Task","object_id":2496,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":99,"fiber_id":2424,"pid":99,"subject":"Async::Task","object_id":2432,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":18,"fiber_id":2184,"pid":18,"subject":"Async::Task","object_id":2192,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":180,"fiber_id":3240,"pid":180,"subject":"Async::Task","object_id":3248,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":45,"fiber_id":1832,"pid":45,"subject":"Async::Task","object_id":1840,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":114,"fiber_id":2488,"pid":114,"subject":"Async::Task","object_id":2496,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":63,"fiber_id":2136,"pid":63,"subject":"Async::Task","object_id":2144,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":141,"fiber_id":2568,"pid":141,"subject":"Async::Task","object_id":2576,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":129,"fiber_id":2328,"pid":129,"subject":"Async::Task","object_id":2336,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":93,"fiber_id":2360,"pid":93,"subject":"Async::Task","object_id":2368,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":156,"fiber_id":2728,"pid":156,"subject":"Async::Task","object_id":2736,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":84,"fiber_id":2376,"pid":84,"subject":"Async::Task","object_id":2384,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":57,"fiber_id":2344,"pid":57,"subject":"Async::Task","object_id":2352,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":87,"fiber_id":2440,"pid":87,"subject":"Async::Task","object_id":2448,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":138,"fiber_id":2360,"pid":138,"subject":"Async::Task","object_id":2368,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":135,"fiber_id":2600,"pid":135,"subject":"Async::Task","object_id":2608,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":81,"fiber_id":2136,"pid":81,"subject":"Async::Task","object_id":2144,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":108,"fiber_id":2344,"pid":108,"subject":"Async::Task","object_id":2352,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":102,"fiber_id":2472,"pid":102,"subject":"Async::Task","object_id":2480,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":198,"fiber_id":3176,"pid":198,"subject":"Async::Task","object_id":3184,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":18,"fiber_id":2216,"pid":18,"subject":"Async::Task","object_id":2224,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":111,"fiber_id":2568,"pid":111,"subject":"Async::Task","object_id":2576,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":120,"fiber_id":2632,"pid":120,"subject":"Async::Task","object_id":2640,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":84,"fiber_id":2392,"pid":84,"subject":"Async::Task","object_id":2400,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":78,"fiber_id":2424,"pid":78,"subject":"Async::Task","object_id":2432,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":45,"fiber_id":1848,"pid":45,"subject":"Async::Task","object_id":1856,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":69,"fiber_id":2104,"pid":69,"subject":"Async::Task","object_id":2112,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":93,"fiber_id":2376,"pid":93,"subject":"Async::Task","object_id":2384,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":192,"fiber_id":3112,"pid":192,"subject":"Async::Task","object_id":3120,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":165,"fiber_id":3208,"pid":165,"subject":"Async::Task","object_id":3216,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":180,"fiber_id":3256,"pid":180,"subject":"Async::Task","object_id":3264,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":189,"fiber_id":3096,"pid":189,"subject":"Async::Task","object_id":3104,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":24,"fiber_id":2056,"pid":24,"subject":"Async::Task","object_id":2064,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":36,"fiber_id":2152,"pid":36,"subject":"Async::Task","object_id":2160,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":87,"fiber_id":2488,"pid":87,"subject":"Async::Task","object_id":2496,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":66,"fiber_id":2232,"pid":66,"subject":"Async::Task","object_id":2240,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":168,"fiber_id":2936,"pid":168,"subject":"Async::Task","object_id":2944,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":102,"fiber_id":2488,"pid":102,"subject":"Async::Task","object_id":2496,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":72,"fiber_id":2216,"pid":72,"subject":"Async::Task","object_id":2224,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":96,"fiber_id":2504,"pid":96,"subject":"Async::Task","object_id":2512,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":84,"fiber_id":2408,"pid":84,"subject":"Async::Task","object_id":2416,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":57,"fiber_id":2360,"pid":57,"subject":"Async::Task","object_id":2368,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":135,"fiber_id":2616,"pid":135,"subject":"Async::Task","object_id":2624,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":159,"fiber_id":2776,"pid":159,"subject":"Async::Task","object_id":2784,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":147,"fiber_id":2760,"pid":147,"subject":"Async::Task","object_id":2768,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":54,"fiber_id":2168,"pid":54,"subject":"Async::Task","object_id":2176,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":192,"fiber_id":3128,"pid":192,"subject":"Async::Task","object_id":3136,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":36,"fiber_id":2168,"pid":36,"subject":"Async::Task","object_id":2176,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":57,"fiber_id":2376,"pid":57,"subject":"Async::Task","object_id":2384,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":54,"fiber_id":2184,"pid":54,"subject":"Async::Task","object_id":2192,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":66,"fiber_id":2248,"pid":66,"subject":"Async::Task","object_id":2256,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":12,"fiber_id":1896,"pid":12,"subject":"Async::Task","object_id":1904,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":63,"fiber_id":2152,"pid":63,"subject":"Async::Task","object_id":2160,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":132,"fiber_id":2760,"pid":132,"subject":"Async::Task","object_id":2768,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":48,"fiber_id":2120,"pid":48,"subject":"Async::Task","object_id":2128,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":57,"fiber_id":2392,"pid":57,"subject":"Async::Task","object_id":2400,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":66,"fiber_id":2264,"pid":66,"subject":"Async::Task","object_id":2272,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":183,"fiber_id":2952,"pid":183,"subject":"Async::Task","object_id":2960,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":93,"fiber_id":2392,"pid":93,"subject":"Async::Task","object_id":2400,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":90,"fiber_id":2200,"pid":90,"subject":"Async::Task","object_id":2208,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":156,"fiber_id":2744,"pid":156,"subject":"Async::Task","object_id":2752,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":108,"fiber_id":2360,"pid":108,"subject":"Async::Task","object_id":2368,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":90,"fiber_id":2216,"pid":90,"subject":"Async::Task","object_id":2224,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":120,"fiber_id":2584,"pid":120,"subject":"Async::Task","object_id":2592,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":69,"fiber_id":2120,"pid":69,"subject":"Async::Task","object_id":2128,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":123,"fiber_id":2424,"pid":123,"subject":"Async::Task","object_id":2432,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":18,"fiber_id":2200,"pid":18,"subject":"Async::Task","object_id":2208,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":105,"fiber_id":2504,"pid":105,"subject":"Async::Task","object_id":2512,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":12,"fiber_id":1960,"pid":12,"subject":"Async::Task","object_id":1968,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":159,"fiber_id":2792,"pid":159,"subject":"Async::Task","object_id":2800,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":147,"fiber_id":2792,"pid":147,"subject":"Async::Task","object_id":2800,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":192,"fiber_id":3144,"pid":192,"subject":"Async::Task","object_id":3152,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":39,"fiber_id":2184,"pid":39,"subject":"Async::Task","object_id":2192,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":183,"fiber_id":2968,"pid":183,"subject":"Async::Task","object_id":2976,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":168,"fiber_id":2952,"pid":168,"subject":"Async::Task","object_id":2960,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":96,"fiber_id":2440,"pid":96,"subject":"Async::Task","object_id":2448,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":15,"fiber_id":2088,"pid":15,"subject":"Async::Task","object_id":2096,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":78,"fiber_id":2408,"pid":78,"subject":"Async::Task","object_id":2416,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":132,"fiber_id":2776,"pid":132,"subject":"Async::Task","object_id":2784,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":90,"fiber_id":2232,"pid":90,"subject":"Async::Task","object_id":2240,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":156,"fiber_id":2760,"pid":156,"subject":"Async::Task","object_id":2768,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":66,"fiber_id":2280,"pid":66,"subject":"Async::Task","object_id":2288,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":120,"fiber_id":2648,"pid":120,"subject":"Async::Task","object_id":2656,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":105,"fiber_id":2552,"pid":105,"subject":"Async::Task","object_id":2560,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":45,"fiber_id":1864,"pid":45,"subject":"Async::Task","object_id":1872,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":39,"fiber_id":2200,"pid":39,"subject":"Async::Task","object_id":2208,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":96,"fiber_id":2520,"pid":96,"subject":"Async::Task","object_id":2528,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":165,"fiber_id":3224,"pid":165,"subject":"Async::Task","object_id":3232,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":33,"fiber_id":2056,"pid":33,"subject":"Async::Task","object_id":2064,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":168,"fiber_id":2968,"pid":168,"subject":"Async::Task","object_id":2976,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":153,"fiber_id":2792,"pid":153,"subject":"Async::Task","object_id":2800,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":120,"fiber_id":2664,"pid":120,"subject":"Async::Task","object_id":2672,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":132,"fiber_id":2792,"pid":132,"subject":"Async::Task","object_id":2800,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":87,"fiber_id":2456,"pid":87,"subject":"Async::Task","object_id":2464,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":78,"fiber_id":2440,"pid":78,"subject":"Async::Task","object_id":2448,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":195,"fiber_id":3352,"pid":195,"subject":"Async::Task","object_id":3360,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":183,"fiber_id":2984,"pid":183,"subject":"Async::Task","object_id":2992,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":45,"fiber_id":1912,"pid":45,"subject":"Async::Task","object_id":1920,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":75,"fiber_id":2104,"pid":75,"subject":"Async::Task","object_id":2112,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":96,"fiber_id":2536,"pid":96,"subject":"Async::Task","object_id":2544,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":24,"fiber_id":2072,"pid":24,"subject":"Async::Task","object_id":2080,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":186,"fiber_id":3000,"pid":186,"subject":"Async::Task","object_id":3008,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":102,"fiber_id":2504,"pid":102,"subject":"Async::Task","object_id":2512,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":66,"fiber_id":2296,"pid":66,"subject":"Async::Task","object_id":2304,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":120,"fiber_id":2680,"pid":120,"subject":"Async::Task","object_id":2688,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":45,"fiber_id":1928,"pid":45,"subject":"Async::Task","object_id":1936,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":87,"fiber_id":2504,"pid":87,"subject":"Async::Task","object_id":2512,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":153,"fiber_id":2840,"pid":153,"subject":"Async::Task","object_id":2848,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":87,"fiber_id":2472,"pid":87,"subject":"Async::Task","object_id":2480,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":168,"fiber_id":2984,"pid":168,"subject":"Async::Task","object_id":2992,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":33,"fiber_id":2072,"pid":33,"subject":"Async::Task","object_id":2080,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":123,"fiber_id":2504,"pid":123,"subject":"Async::Task","object_id":2512,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":186,"fiber_id":3016,"pid":186,"subject":"Async::Task","object_id":3024,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":111,"fiber_id":2584,"pid":111,"subject":"Async::Task","object_id":2592,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":66,"fiber_id":2312,"pid":66,"subject":"Async::Task","object_id":2320,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":75,"fiber_id":2152,"pid":75,"subject":"Async::Task","object_id":2160,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":78,"fiber_id":2456,"pid":78,"subject":"Async::Task","object_id":2464,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":132,"fiber_id":2808,"pid":132,"subject":"Async::Task","object_id":2816,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":39,"fiber_id":2216,"pid":39,"subject":"Async::Task","object_id":2224,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":105,"fiber_id":2568,"pid":105,"subject":"Async::Task","object_id":2576,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":81,"fiber_id":2152,"pid":81,"subject":"Async::Task","object_id":2160,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":153,"fiber_id":2856,"pid":153,"subject":"Async::Task","object_id":2864,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":42,"fiber_id":1896,"pid":42,"subject":"Async::Task","object_id":1904,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":33,"fiber_id":2088,"pid":33,"subject":"Async::Task","object_id":2096,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":48,"fiber_id":2152,"pid":48,"subject":"Async::Task","object_id":2160,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":111,"fiber_id":2616,"pid":111,"subject":"Async::Task","object_id":2624,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":90,"fiber_id":2248,"pid":90,"subject":"Async::Task","object_id":2256,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":153,"fiber_id":2872,"pid":153,"subject":"Async::Task","object_id":2880,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":45,"fiber_id":1944,"pid":45,"subject":"Async::Task","object_id":1952,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":183,"fiber_id":3000,"pid":183,"subject":"Async::Task","object_id":3008,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":33,"fiber_id":2104,"pid":33,"subject":"Async::Task","object_id":2112,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":24,"fiber_id":2088,"pid":24,"subject":"Async::Task","object_id":2096,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":102,"fiber_id":2520,"pid":102,"subject":"Async::Task","object_id":2528,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":195,"fiber_id":3448,"pid":195,"subject":"Async::Task","object_id":3456,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":111,"fiber_id":2632,"pid":111,"subject":"Async::Task","object_id":2640,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":117,"fiber_id":2616,"pid":117,"subject":"Async::Task","object_id":2624,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":165,"fiber_id":3240,"pid":165,"subject":"Async::Task","object_id":3248,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":84,"fiber_id":2424,"pid":84,"subject":"Async::Task","object_id":2432,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":162,"fiber_id":2984,"pid":162,"subject":"Async::Task","object_id":2992,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":192,"fiber_id":3160,"pid":192,"subject":"Async::Task","object_id":3168,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":42,"fiber_id":1912,"pid":42,"subject":"Async::Task","object_id":1920,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":15,"fiber_id":2104,"pid":15,"subject":"Async::Task","object_id":2112,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":186,"fiber_id":3032,"pid":186,"subject":"Async::Task","object_id":3040,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":102,"fiber_id":2536,"pid":102,"subject":"Async::Task","object_id":2544,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":111,"fiber_id":2648,"pid":111,"subject":"Async::Task","object_id":2656,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":153,"fiber_id":2888,"pid":153,"subject":"Async::Task","object_id":2896,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":123,"fiber_id":2520,"pid":123,"subject":"Async::Task","object_id":2528,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":45,"fiber_id":1960,"pid":45,"subject":"Async::Task","object_id":1968,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":81,"fiber_id":2168,"pid":81,"subject":"Async::Task","object_id":2176,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":114,"fiber_id":2536,"pid":114,"subject":"Async::Task","object_id":2544,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":156,"fiber_id":2776,"pid":156,"subject":"Async::Task","object_id":2784,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":24,"fiber_id":2104,"pid":24,"subject":"Async::Task","object_id":2112,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":63,"fiber_id":2168,"pid":63,"subject":"Async::Task","object_id":2176,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":162,"fiber_id":3016,"pid":162,"subject":"Async::Task","object_id":3024,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":33,"fiber_id":2120,"pid":33,"subject":"Async::Task","object_id":2128,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":72,"fiber_id":2248,"pid":72,"subject":"Async::Task","object_id":2256,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":141,"fiber_id":2616,"pid":141,"subject":"Async::Task","object_id":2624,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":45,"fiber_id":1976,"pid":45,"subject":"Async::Task","object_id":1984,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":114,"fiber_id":2584,"pid":114,"subject":"Async::Task","object_id":2592,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":174,"fiber_id":3192,"pid":174,"subject":"Async::Task","object_id":3200,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":75,"fiber_id":2168,"pid":75,"subject":"Async::Task","object_id":2176,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":9,"fiber_id":1896,"pid":9,"subject":"Async::Task","object_id":1904,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":63,"fiber_id":2184,"pid":63,"subject":"Async::Task","object_id":2192,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":81,"fiber_id":2184,"pid":81,"subject":"Async::Task","object_id":2192,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":126,"fiber_id":2520,"pid":126,"subject":"Async::Task","object_id":2528,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":33,"fiber_id":2136,"pid":33,"subject":"Async::Task","object_id":2144,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":135,"fiber_id":2632,"pid":135,"subject":"Async::Task","object_id":2640,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":87,"fiber_id":2520,"pid":87,"subject":"Async::Task","object_id":2528,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":63,"fiber_id":2200,"pid":63,"subject":"Async::Task","object_id":2208,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":39,"fiber_id":2232,"pid":39,"subject":"Async::Task","object_id":2240,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":87,"fiber_id":2536,"pid":87,"subject":"Async::Task","object_id":2544,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":96,"fiber_id":2456,"pid":96,"subject":"Async::Task","object_id":2464,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":39,"fiber_id":2152,"pid":39,"subject":"Async::Task","object_id":2160,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":111,"fiber_id":2600,"pid":111,"subject":"Async::Task","object_id":2608,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":132,"fiber_id":2824,"pid":132,"subject":"Async::Task","object_id":2832,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":24,"fiber_id":2120,"pid":24,"subject":"Async::Task","object_id":2128,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":90,"fiber_id":2264,"pid":90,"subject":"Async::Task","object_id":2272,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":129,"fiber_id":2344,"pid":129,"subject":"Async::Task","object_id":2352,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":96,"fiber_id":2488,"pid":96,"subject":"Async::Task","object_id":2496,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":105,"fiber_id":2584,"pid":105,"subject":"Async::Task","object_id":2592,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":144,"fiber_id":2504,"pid":144,"subject":"Async::Task","object_id":2512,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":30,"fiber_id":2040,"pid":30,"subject":"Async::Task","object_id":2048,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":105,"fiber_id":2536,"pid":105,"subject":"Async::Task","object_id":2544,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":63,"fiber_id":2216,"pid":63,"subject":"Async::Task","object_id":2224,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":156,"fiber_id":2792,"pid":156,"subject":"Async::Task","object_id":2800,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":162,"fiber_id":3000,"pid":162,"subject":"Async::Task","object_id":3008,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":102,"fiber_id":2552,"pid":102,"subject":"Async::Task","object_id":2560,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":153,"fiber_id":2808,"pid":153,"subject":"Async::Task","object_id":2816,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":45,"fiber_id":1880,"pid":45,"subject":"Async::Task","object_id":1888,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":45,"fiber_id":1896,"pid":45,"subject":"Async::Task","object_id":1904,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":153,"fiber_id":2824,"pid":153,"subject":"Async::Task","object_id":2832,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":57,"fiber_id":2408,"pid":57,"subject":"Async::Task","object_id":2416,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":174,"fiber_id":3208,"pid":174,"subject":"Async::Task","object_id":3216,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":195,"fiber_id":3368,"pid":195,"subject":"Async::Task","object_id":3376,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":39,"fiber_id":2264,"pid":39,"subject":"Async::Task","object_id":2272,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":117,"fiber_id":2728,"pid":117,"subject":"Async::Task","object_id":2736,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":69,"fiber_id":2136,"pid":69,"subject":"Async::Task","object_id":2144,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":15,"fiber_id":2120,"pid":15,"subject":"Async::Task","object_id":2128,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":156,"fiber_id":2808,"pid":156,"subject":"Async::Task","object_id":2816,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":90,"fiber_id":2280,"pid":90,"subject":"Async::Task","object_id":2288,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":75,"fiber_id":2184,"pid":75,"subject":"Async::Task","object_id":2192,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":39,"fiber_id":2168,"pid":39,"subject":"Async::Task","object_id":2176,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":75,"fiber_id":2136,"pid":75,"subject":"Async::Task","object_id":2144,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":36,"fiber_id":2184,"pid":36,"subject":"Async::Task","object_id":2192,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":105,"fiber_id":2600,"pid":105,"subject":"Async::Task","object_id":2608,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":66,"fiber_id":2328,"pid":66,"subject":"Async::Task","object_id":2336,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":90,"fiber_id":2296,"pid":90,"subject":"Async::Task","object_id":2304,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":102,"fiber_id":2568,"pid":102,"subject":"Async::Task","object_id":2576,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":33,"fiber_id":2152,"pid":33,"subject":"Async::Task","object_id":2160,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":129,"fiber_id":2360,"pid":129,"subject":"Async::Task","object_id":2368,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":96,"fiber_id":2568,"pid":96,"subject":"Async::Task","object_id":2576,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":105,"fiber_id":2616,"pid":105,"subject":"Async::Task","object_id":2624,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":186,"fiber_id":3048,"pid":186,"subject":"Async::Task","object_id":3056,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":78,"fiber_id":2472,"pid":78,"subject":"Async::Task","object_id":2480,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":153,"fiber_id":2904,"pid":153,"subject":"Async::Task","object_id":2912,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":195,"fiber_id":3464,"pid":195,"subject":"Async::Task","object_id":3472,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":144,"fiber_id":2520,"pid":144,"subject":"Async::Task","object_id":2528,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":72,"fiber_id":2232,"pid":72,"subject":"Async::Task","object_id":2240,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":120,"fiber_id":2600,"pid":120,"subject":"Async::Task","object_id":2608,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":147,"fiber_id":2776,"pid":147,"subject":"Async::Task","object_id":2784,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":9,"fiber_id":1944,"pid":9,"subject":"Async::Task","object_id":1952,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":15,"fiber_id":2136,"pid":15,"subject":"Async::Task","object_id":2144,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":162,"fiber_id":3032,"pid":162,"subject":"Async::Task","object_id":3040,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":174,"fiber_id":3224,"pid":174,"subject":"Async::Task","object_id":3232,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":150,"fiber_id":2776,"pid":150,"subject":"Async::Task","object_id":2784,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":84,"fiber_id":2440,"pid":84,"subject":"Async::Task","object_id":2448,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":186,"fiber_id":3064,"pid":186,"subject":"Async::Task","object_id":3072,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":114,"fiber_id":2600,"pid":114,"subject":"Async::Task","object_id":2608,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":174,"fiber_id":3240,"pid":174,"subject":"Async::Task","object_id":3248,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":57,"fiber_id":2424,"pid":57,"subject":"Async::Task","object_id":2432,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":174,"fiber_id":3256,"pid":174,"subject":"Async::Task","object_id":3264,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":102,"fiber_id":2584,"pid":102,"subject":"Async::Task","object_id":2592,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":81,"fiber_id":2200,"pid":81,"subject":"Async::Task","object_id":2208,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":30,"fiber_id":2136,"pid":30,"subject":"Async::Task","object_id":2144,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":54,"fiber_id":2200,"pid":54,"subject":"Async::Task","object_id":2208,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":33,"fiber_id":2184,"pid":33,"subject":"Async::Task","object_id":2192,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":177,"fiber_id":3128,"pid":177,"subject":"Async::Task","object_id":3136,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":90,"fiber_id":2312,"pid":90,"subject":"Async::Task","object_id":2320,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":153,"fiber_id":2920,"pid":153,"subject":"Async::Task","object_id":2928,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":114,"fiber_id":2552,"pid":114,"subject":"Async::Task","object_id":2560,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":57,"fiber_id":2440,"pid":57,"subject":"Async::Task","object_id":2448,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":84,"fiber_id":2456,"pid":84,"subject":"Async::Task","object_id":2464,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":168,"fiber_id":3000,"pid":168,"subject":"Async::Task","object_id":3008,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":147,"fiber_id":2808,"pid":147,"subject":"Async::Task","object_id":2816,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":144,"fiber_id":2536,"pid":144,"subject":"Async::Task","object_id":2544,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":9,"fiber_id":1960,"pid":9,"subject":"Async::Task","object_id":1968,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":153,"fiber_id":2936,"pid":153,"subject":"Async::Task","object_id":2944,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":117,"fiber_id":2744,"pid":117,"subject":"Async::Task","object_id":2752,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":177,"fiber_id":3336,"pid":177,"subject":"Async::Task","object_id":3344,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":150,"fiber_id":2872,"pid":150,"subject":"Async::Task","object_id":2880,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":75,"fiber_id":2200,"pid":75,"subject":"Async::Task","object_id":2208,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":36,"fiber_id":2200,"pid":36,"subject":"Async::Task","object_id":2208,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":105,"fiber_id":2632,"pid":105,"subject":"Async::Task","object_id":2640,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":186,"fiber_id":3080,"pid":186,"subject":"Async::Task","object_id":3088,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":183,"fiber_id":3016,"pid":183,"subject":"Async::Task","object_id":3024,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":81,"fiber_id":2248,"pid":81,"subject":"Async::Task","object_id":2256,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":102,"fiber_id":2600,"pid":102,"subject":"Async::Task","object_id":2608,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":132,"fiber_id":2840,"pid":132,"subject":"Async::Task","object_id":2848,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":195,"fiber_id":3400,"pid":195,"subject":"Async::Task","object_id":3408,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":33,"fiber_id":2200,"pid":33,"subject":"Async::Task","object_id":2208,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":195,"fiber_id":3432,"pid":195,"subject":"Async::Task","object_id":3440,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":195,"fiber_id":3384,"pid":195,"subject":"Async::Task","object_id":3392,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":195,"fiber_id":3416,"pid":195,"subject":"Async::Task","object_id":3424,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":150,"fiber_id":2888,"pid":150,"subject":"Async::Task","object_id":2896,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":96,"fiber_id":2552,"pid":96,"subject":"Async::Task","object_id":2560,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":96,"fiber_id":2472,"pid":96,"subject":"Async::Task","object_id":2480,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":39,"fiber_id":2120,"pid":39,"subject":"Async::Task","object_id":2128,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":9,"fiber_id":1976,"pid":9,"subject":"Async::Task","object_id":1984,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":12,"fiber_id":1912,"pid":12,"subject":"Async::Task","object_id":1920,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":123,"fiber_id":2536,"pid":123,"subject":"Async::Task","object_id":2544,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":39,"fiber_id":2248,"pid":39,"subject":"Async::Task","object_id":2256,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":21,"fiber_id":1832,"pid":21,"subject":"Async::Task","object_id":1840,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":99,"fiber_id":2440,"pid":99,"subject":"Async::Task","object_id":2448,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":39,"fiber_id":2136,"pid":39,"subject":"Async::Task","object_id":2144,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":48,"fiber_id":2136,"pid":48,"subject":"Async::Task","object_id":2144,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":114,"fiber_id":2664,"pid":114,"subject":"Async::Task","object_id":2672,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":33,"fiber_id":2216,"pid":33,"subject":"Async::Task","object_id":2224,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":192,"fiber_id":3176,"pid":192,"subject":"Async::Task","object_id":3184,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":150,"fiber_id":2904,"pid":150,"subject":"Async::Task","object_id":2912,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":9,"fiber_id":1992,"pid":9,"subject":"Async::Task","object_id":2000,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":54,"fiber_id":2264,"pid":54,"subject":"Async::Task","object_id":2272,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":93,"fiber_id":2408,"pid":93,"subject":"Async::Task","object_id":2416,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":54,"fiber_id":2280,"pid":54,"subject":"Async::Task","object_id":2288,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":144,"fiber_id":2552,"pid":144,"subject":"Async::Task","object_id":2560,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":9,"fiber_id":2008,"pid":9,"subject":"Async::Task","object_id":2016,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":90,"fiber_id":2328,"pid":90,"subject":"Async::Task","object_id":2336,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":48,"fiber_id":2200,"pid":48,"subject":"Async::Task","object_id":2208,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":123,"fiber_id":2616,"pid":123,"subject":"Async::Task","object_id":2624,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":123,"fiber_id":2456,"pid":123,"subject":"Async::Task","object_id":2464,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":192,"fiber_id":3240,"pid":192,"subject":"Async::Task","object_id":3248,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":105,"fiber_id":2520,"pid":105,"subject":"Async::Task","object_id":2528,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":54,"fiber_id":2296,"pid":54,"subject":"Async::Task","object_id":2304,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":21,"fiber_id":1928,"pid":21,"subject":"Async::Task","object_id":1936,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":183,"fiber_id":3032,"pid":183,"subject":"Async::Task","object_id":3040,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":57,"fiber_id":2456,"pid":57,"subject":"Async::Task","object_id":2464,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":93,"fiber_id":2440,"pid":93,"subject":"Async::Task","object_id":2448,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":132,"fiber_id":2856,"pid":132,"subject":"Async::Task","object_id":2864,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":30,"fiber_id":2056,"pid":30,"subject":"Async::Task","object_id":2064,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":138,"fiber_id":2376,"pid":138,"subject":"Async::Task","object_id":2384,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":117,"fiber_id":2760,"pid":117,"subject":"Async::Task","object_id":2768,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":54,"fiber_id":2312,"pid":54,"subject":"Async::Task","object_id":2320,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":186,"fiber_id":3096,"pid":186,"subject":"Async::Task","object_id":3104,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":93,"fiber_id":2456,"pid":93,"subject":"Async::Task","object_id":2464,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":153,"fiber_id":2952,"pid":153,"subject":"Async::Task","object_id":2960,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":99,"fiber_id":2456,"pid":99,"subject":"Async::Task","object_id":2464,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":123,"fiber_id":2472,"pid":123,"subject":"Async::Task","object_id":2480,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":150,"fiber_id":2792,"pid":150,"subject":"Async::Task","object_id":2800,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":177,"fiber_id":3352,"pid":177,"subject":"Async::Task","object_id":3360,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":54,"fiber_id":2328,"pid":54,"subject":"Async::Task","object_id":2336,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":123,"fiber_id":2632,"pid":123,"subject":"Async::Task","object_id":2640,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":120,"fiber_id":2696,"pid":120,"subject":"Async::Task","object_id":2704,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":75,"fiber_id":2120,"pid":75,"subject":"Async::Task","object_id":2128,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":150,"fiber_id":2808,"pid":150,"subject":"Async::Task","object_id":2816,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":177,"fiber_id":3160,"pid":177,"subject":"Async::Task","object_id":3168,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":123,"fiber_id":2648,"pid":123,"subject":"Async::Task","object_id":2656,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":192,"fiber_id":3256,"pid":192,"subject":"Async::Task","object_id":3264,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":93,"fiber_id":2472,"pid":93,"subject":"Async::Task","object_id":2480,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":30,"fiber_id":2072,"pid":30,"subject":"Async::Task","object_id":2080,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":15,"fiber_id":2152,"pid":15,"subject":"Async::Task","object_id":2160,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":72,"fiber_id":2264,"pid":72,"subject":"Async::Task","object_id":2272,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":9,"fiber_id":1928,"pid":9,"subject":"Async::Task","object_id":1936,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":141,"fiber_id":2648,"pid":141,"subject":"Async::Task","object_id":2656,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":9,"fiber_id":1912,"pid":9,"subject":"Async::Task","object_id":1920,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":105,"fiber_id":2648,"pid":105,"subject":"Async::Task","object_id":2656,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":186,"fiber_id":3128,"pid":186,"subject":"Async::Task","object_id":3136,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":150,"fiber_id":2824,"pid":150,"subject":"Async::Task","object_id":2832,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":99,"fiber_id":2472,"pid":99,"subject":"Async::Task","object_id":2480,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":156,"fiber_id":2824,"pid":156,"subject":"Async::Task","object_id":2832,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":42,"fiber_id":1928,"pid":42,"subject":"Async::Task","object_id":1936,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":189,"fiber_id":3112,"pid":189,"subject":"Async::Task","object_id":3120,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":123,"fiber_id":2664,"pid":123,"subject":"Async::Task","object_id":2672,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":30,"fiber_id":2152,"pid":30,"subject":"Async::Task","object_id":2160,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":117,"fiber_id":2664,"pid":117,"subject":"Async::Task","object_id":2672,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":138,"fiber_id":2392,"pid":138,"subject":"Async::Task","object_id":2400,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":150,"fiber_id":2840,"pid":150,"subject":"Async::Task","object_id":2848,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":30,"fiber_id":2168,"pid":30,"subject":"Async::Task","object_id":2176,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":156,"fiber_id":2840,"pid":156,"subject":"Async::Task","object_id":2848,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":117,"fiber_id":2776,"pid":117,"subject":"Async::Task","object_id":2784,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":153,"fiber_id":2968,"pid":153,"subject":"Async::Task","object_id":2976,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":114,"fiber_id":2680,"pid":114,"subject":"Async::Task","object_id":2688,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":138,"fiber_id":2408,"pid":138,"subject":"Async::Task","object_id":2416,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":45,"fiber_id":1992,"pid":45,"subject":"Async::Task","object_id":2000,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":141,"fiber_id":2760,"pid":141,"subject":"Async::Task","object_id":2768,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":30,"fiber_id":2184,"pid":30,"subject":"Async::Task","object_id":2192,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":54,"fiber_id":2216,"pid":54,"subject":"Async::Task","object_id":2224,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":126,"fiber_id":2536,"pid":126,"subject":"Async::Task","object_id":2544,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":120,"fiber_id":2712,"pid":120,"subject":"Async::Task","object_id":2720,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":39,"fiber_id":2280,"pid":39,"subject":"Async::Task","object_id":2288,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":54,"fiber_id":2232,"pid":54,"subject":"Async::Task","object_id":2240,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":45,"fiber_id":2008,"pid":45,"subject":"Async::Task","object_id":2016,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":96,"fiber_id":2584,"pid":96,"subject":"Async::Task","object_id":2592,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":54,"fiber_id":2248,"pid":54,"subject":"Async::Task","object_id":2256,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":120,"fiber_id":2616,"pid":120,"subject":"Async::Task","object_id":2624,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":12,"fiber_id":1944,"pid":12,"subject":"Async::Task","object_id":1952,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":108,"fiber_id":2376,"pid":108,"subject":"Async::Task","object_id":2384,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":81,"fiber_id":2264,"pid":81,"subject":"Async::Task","object_id":2272,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":180,"fiber_id":3272,"pid":180,"subject":"Async::Task","object_id":3280,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":117,"fiber_id":2680,"pid":117,"subject":"Async::Task","object_id":2688,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":159,"fiber_id":2808,"pid":159,"subject":"Async::Task","object_id":2816,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":189,"fiber_id":3208,"pid":189,"subject":"Async::Task","object_id":3216,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":141,"fiber_id":2776,"pid":141,"subject":"Async::Task","object_id":2784,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":90,"fiber_id":2344,"pid":90,"subject":"Async::Task","object_id":2352,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":186,"fiber_id":3112,"pid":186,"subject":"Async::Task","object_id":3120,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":183,"fiber_id":3048,"pid":183,"subject":"Async::Task","object_id":3056,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":117,"fiber_id":2696,"pid":117,"subject":"Async::Task","object_id":2704,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":81,"fiber_id":2312,"pid":81,"subject":"Async::Task","object_id":2320,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":126,"fiber_id":2568,"pid":126,"subject":"Async::Task","object_id":2576,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":54,"fiber_id":2344,"pid":54,"subject":"Async::Task","object_id":2352,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":117,"fiber_id":2712,"pid":117,"subject":"Async::Task","object_id":2720,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":48,"fiber_id":2216,"pid":48,"subject":"Async::Task","object_id":2224,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":150,"fiber_id":2856,"pid":150,"subject":"Async::Task","object_id":2864,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":12,"fiber_id":2008,"pid":12,"subject":"Async::Task","object_id":2016,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":93,"fiber_id":2488,"pid":93,"subject":"Async::Task","object_id":2496,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":33,"fiber_id":2168,"pid":33,"subject":"Async::Task","object_id":2176,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":117,"fiber_id":2632,"pid":117,"subject":"Async::Task","object_id":2640,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":81,"fiber_id":2232,"pid":81,"subject":"Async::Task","object_id":2240,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":117,"fiber_id":2648,"pid":117,"subject":"Async::Task","object_id":2656,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":30,"fiber_id":2088,"pid":30,"subject":"Async::Task","object_id":2096,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":159,"fiber_id":2840,"pid":159,"subject":"Async::Task","object_id":2848,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":12,"fiber_id":2024,"pid":12,"subject":"Async::Task","object_id":2032,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":177,"fiber_id":3176,"pid":177,"subject":"Async::Task","object_id":3184,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":198,"fiber_id":3192,"pid":198,"subject":"Async::Task","object_id":3200,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":21,"fiber_id":1848,"pid":21,"subject":"Async::Task","object_id":1856,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":123,"fiber_id":2488,"pid":123,"subject":"Async::Task","object_id":2496,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":177,"fiber_id":3192,"pid":177,"subject":"Async::Task","object_id":3200,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":186,"fiber_id":3144,"pid":186,"subject":"Async::Task","object_id":3152,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":21,"fiber_id":1864,"pid":21,"subject":"Async::Task","object_id":1872,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":93,"fiber_id":2504,"pid":93,"subject":"Async::Task","object_id":2512,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":114,"fiber_id":2568,"pid":114,"subject":"Async::Task","object_id":2576,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":159,"fiber_id":2856,"pid":159,"subject":"Async::Task","object_id":2864,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":126,"fiber_id":2552,"pid":126,"subject":"Async::Task","object_id":2560,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":90,"fiber_id":2360,"pid":90,"subject":"Async::Task","object_id":2368,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":114,"fiber_id":2504,"pid":114,"subject":"Async::Task","object_id":2512,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":54,"fiber_id":2360,"pid":54,"subject":"Async::Task","object_id":2368,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":33,"fiber_id":2232,"pid":33,"subject":"Async::Task","object_id":2240,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":81,"fiber_id":2328,"pid":81,"subject":"Async::Task","object_id":2336,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":192,"fiber_id":3192,"pid":192,"subject":"Async::Task","object_id":3200,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":180,"fiber_id":3368,"pid":180,"subject":"Async::Task","object_id":3376,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":12,"fiber_id":2040,"pid":12,"subject":"Async::Task","object_id":2048,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":21,"fiber_id":1944,"pid":21,"subject":"Async::Task","object_id":1952,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":123,"fiber_id":2552,"pid":123,"subject":"Async::Task","object_id":2560,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":129,"fiber_id":2376,"pid":129,"subject":"Async::Task","object_id":2384,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":123,"fiber_id":2568,"pid":123,"subject":"Async::Task","object_id":2576,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":30,"fiber_id":2104,"pid":30,"subject":"Async::Task","object_id":2112,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":75,"fiber_id":2216,"pid":75,"subject":"Async::Task","object_id":2224,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":159,"fiber_id":2872,"pid":159,"subject":"Async::Task","object_id":2880,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":192,"fiber_id":3208,"pid":192,"subject":"Async::Task","object_id":3216,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":159,"fiber_id":2888,"pid":159,"subject":"Async::Task","object_id":2896,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":123,"fiber_id":2584,"pid":123,"subject":"Async::Task","object_id":2592,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":30,"fiber_id":2200,"pid":30,"subject":"Async::Task","object_id":2208,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":123,"fiber_id":2600,"pid":123,"subject":"Async::Task","object_id":2608,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":123,"fiber_id":2440,"pid":123,"subject":"Async::Task","object_id":2448,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":114,"fiber_id":2696,"pid":114,"subject":"Async::Task","object_id":2704,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":189,"fiber_id":3128,"pid":189,"subject":"Async::Task","object_id":3136,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":138,"fiber_id":2424,"pid":138,"subject":"Async::Task","object_id":2432,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":30,"fiber_id":2120,"pid":30,"subject":"Async::Task","object_id":2128,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":141,"fiber_id":2632,"pid":141,"subject":"Async::Task","object_id":2640,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":12,"fiber_id":1928,"pid":12,"subject":"Async::Task","object_id":1936,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":12,"fiber_id":1976,"pid":12,"subject":"Async::Task","object_id":1984,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":114,"fiber_id":2712,"pid":114,"subject":"Async::Task","object_id":2720,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":12,"fiber_id":1992,"pid":12,"subject":"Async::Task","object_id":2000,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":48,"fiber_id":2168,"pid":48,"subject":"Async::Task","object_id":2176,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":192,"fiber_id":3224,"pid":192,"subject":"Async::Task","object_id":3232,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":177,"fiber_id":3384,"pid":177,"subject":"Async::Task","object_id":3392,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":114,"fiber_id":2616,"pid":114,"subject":"Async::Task","object_id":2624,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":21,"fiber_id":1880,"pid":21,"subject":"Async::Task","object_id":1888,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":141,"fiber_id":2584,"pid":141,"subject":"Async::Task","object_id":2592,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":48,"fiber_id":2232,"pid":48,"subject":"Async::Task","object_id":2240,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":141,"fiber_id":2664,"pid":141,"subject":"Async::Task","object_id":2672,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":93,"fiber_id":2424,"pid":93,"subject":"Async::Task","object_id":2432,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":21,"fiber_id":1896,"pid":21,"subject":"Async::Task","object_id":1904,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":21,"fiber_id":1912,"pid":21,"subject":"Async::Task","object_id":1920,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":189,"fiber_id":3144,"pid":189,"subject":"Async::Task","object_id":3152,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":138,"fiber_id":2440,"pid":138,"subject":"Async::Task","object_id":2448,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":153,"fiber_id":2984,"pid":153,"subject":"Async::Task","object_id":2992,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":114,"fiber_id":2632,"pid":114,"subject":"Async::Task","object_id":2640,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":141,"fiber_id":2680,"pid":141,"subject":"Async::Task","object_id":2688,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":141,"fiber_id":2696,"pid":141,"subject":"Async::Task","object_id":2704,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":141,"fiber_id":2600,"pid":141,"subject":"Async::Task","object_id":2608,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":141,"fiber_id":2712,"pid":141,"subject":"Async::Task","object_id":2720,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":141,"fiber_id":2728,"pid":141,"subject":"Async::Task","object_id":2736,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":189,"fiber_id":3160,"pid":189,"subject":"Async::Task","object_id":3168,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":141,"fiber_id":2744,"pid":141,"subject":"Async::Task","object_id":2752,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":198,"fiber_id":3208,"pid":198,"subject":"Async::Task","object_id":3216,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":93,"fiber_id":2520,"pid":93,"subject":"Async::Task","object_id":2528,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":189,"fiber_id":3176,"pid":189,"subject":"Async::Task","object_id":3184,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":108,"fiber_id":2392,"pid":108,"subject":"Async::Task","object_id":2400,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":189,"fiber_id":3192,"pid":189,"subject":"Async::Task","object_id":3200,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":45,"fiber_id":2024,"pid":45,"subject":"Async::Task","object_id":2032,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":48,"fiber_id":2184,"pid":48,"subject":"Async::Task","object_id":2192,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":138,"fiber_id":2456,"pid":138,"subject":"Async::Task","object_id":2464,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":159,"fiber_id":2824,"pid":159,"subject":"Async::Task","object_id":2832,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":81,"fiber_id":2280,"pid":81,"subject":"Async::Task","object_id":2288,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":93,"fiber_id":2536,"pid":93,"subject":"Async::Task","object_id":2544,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":198,"fiber_id":3224,"pid":198,"subject":"Async::Task","object_id":3232,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":81,"fiber_id":2296,"pid":81,"subject":"Async::Task","object_id":2304,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":198,"fiber_id":3240,"pid":198,"subject":"Async::Task","object_id":3248,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":99,"fiber_id":2488,"pid":99,"subject":"Async::Task","object_id":2496,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":198,"fiber_id":3256,"pid":198,"subject":"Async::Task","object_id":3264,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":198,"fiber_id":3272,"pid":198,"subject":"Async::Task","object_id":3280,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":81,"fiber_id":2216,"pid":81,"subject":"Async::Task","object_id":2224,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":180,"fiber_id":3288,"pid":180,"subject":"Async::Task","object_id":3296,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":198,"fiber_id":3288,"pid":198,"subject":"Async::Task","object_id":3296,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":198,"fiber_id":3304,"pid":198,"subject":"Async::Task","object_id":3312,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":198,"fiber_id":3320,"pid":198,"subject":"Async::Task","object_id":3328,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":198,"fiber_id":3336,"pid":198,"subject":"Async::Task","object_id":3344,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":198,"fiber_id":3352,"pid":198,"subject":"Async::Task","object_id":3360,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":129,"fiber_id":2392,"pid":129,"subject":"Async::Task","object_id":2400,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":180,"fiber_id":3304,"pid":180,"subject":"Async::Task","object_id":3312,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":114,"fiber_id":2648,"pid":114,"subject":"Async::Task","object_id":2656,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":114,"fiber_id":2520,"pid":114,"subject":"Async::Task","object_id":2528,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":99,"fiber_id":2504,"pid":99,"subject":"Async::Task","object_id":2512,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":108,"fiber_id":2408,"pid":108,"subject":"Async::Task","object_id":2416,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":42,"fiber_id":1944,"pid":42,"subject":"Async::Task","object_id":1952,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":180,"fiber_id":3320,"pid":180,"subject":"Async::Task","object_id":3328,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":45,"fiber_id":2040,"pid":45,"subject":"Async::Task","object_id":2048,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":108,"fiber_id":2424,"pid":108,"subject":"Async::Task","object_id":2432,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":108,"fiber_id":2440,"pid":108,"subject":"Async::Task","object_id":2448,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":108,"fiber_id":2456,"pid":108,"subject":"Async::Task","object_id":2464,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":180,"fiber_id":3336,"pid":180,"subject":"Async::Task","object_id":3344,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":99,"fiber_id":2520,"pid":99,"subject":"Async::Task","object_id":2528,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":180,"fiber_id":3352,"pid":180,"subject":"Async::Task","object_id":3360,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":75,"fiber_id":2232,"pid":75,"subject":"Async::Task","object_id":2240,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":42,"fiber_id":1960,"pid":42,"subject":"Async::Task","object_id":1968,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":138,"fiber_id":2472,"pid":138,"subject":"Async::Task","object_id":2480,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":177,"fiber_id":3400,"pid":177,"subject":"Async::Task","object_id":3408,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":90,"fiber_id":2376,"pid":90,"subject":"Async::Task","object_id":2384,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":33,"fiber_id":2248,"pid":33,"subject":"Async::Task","object_id":2256,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":33,"fiber_id":2264,"pid":33,"subject":"Async::Task","object_id":2272,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":129,"fiber_id":2408,"pid":129,"subject":"Async::Task","object_id":2416,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":177,"fiber_id":3208,"pid":177,"subject":"Async::Task","object_id":3216,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":177,"fiber_id":3224,"pid":177,"subject":"Async::Task","object_id":3232,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":33,"fiber_id":2280,"pid":33,"subject":"Async::Task","object_id":2288,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":177,"fiber_id":3240,"pid":177,"subject":"Async::Task","object_id":3248,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":177,"fiber_id":3256,"pid":177,"subject":"Async::Task","object_id":3264,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":129,"fiber_id":2424,"pid":129,"subject":"Async::Task","object_id":2432,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":99,"fiber_id":2536,"pid":99,"subject":"Async::Task","object_id":2544,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":99,"fiber_id":2552,"pid":99,"subject":"Async::Task","object_id":2560,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":99,"fiber_id":2568,"pid":99,"subject":"Async::Task","object_id":2576,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":129,"fiber_id":2440,"pid":129,"subject":"Async::Task","object_id":2448,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":138,"fiber_id":2488,"pid":138,"subject":"Async::Task","object_id":2496,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":129,"fiber_id":2456,"pid":129,"subject":"Async::Task","object_id":2464,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":99,"fiber_id":2584,"pid":99,"subject":"Async::Task","object_id":2592,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":177,"fiber_id":3416,"pid":177,"subject":"Async::Task","object_id":3424,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":99,"fiber_id":2600,"pid":99,"subject":"Async::Task","object_id":2608,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":45,"fiber_id":2056,"pid":45,"subject":"Async::Task","object_id":2064,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":177,"fiber_id":3432,"pid":177,"subject":"Async::Task","object_id":3440,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":99,"fiber_id":2616,"pid":99,"subject":"Async::Task","object_id":2624,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":45,"fiber_id":2072,"pid":45,"subject":"Async::Task","object_id":2080,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":99,"fiber_id":2632,"pid":99,"subject":"Async::Task","object_id":2640,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":177,"fiber_id":3448,"pid":177,"subject":"Async::Task","object_id":3456,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":177,"fiber_id":3272,"pid":177,"subject":"Async::Task","object_id":3280,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":177,"fiber_id":3288,"pid":177,"subject":"Async::Task","object_id":3296,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":99,"fiber_id":2648,"pid":99,"subject":"Async::Task","object_id":2656,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":177,"fiber_id":3304,"pid":177,"subject":"Async::Task","object_id":3312,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":177,"fiber_id":3464,"pid":177,"subject":"Async::Task","object_id":3472,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":177,"fiber_id":3480,"pid":177,"subject":"Async::Task","object_id":3488,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":177,"fiber_id":3320,"pid":177,"subject":"Async::Task","object_id":3328,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":177,"fiber_id":3368,"pid":177,"subject":"Async::Task","object_id":3376,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":177,"fiber_id":3144,"pid":177,"subject":"Async::Task","object_id":3152,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":99,"fiber_id":2664,"pid":99,"subject":"Async::Task","object_id":2672,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:27+00:00","severity":"warn","process_id":99,"fiber_id":2680,"pid":99,"subject":"Async::Task","object_id":2688,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":192,"fiber_id":3272,"pid":192,"subject":"Async::Task","object_id":3280,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":51,"fiber_id":1912,"pid":51,"subject":"Async::Task","object_id":1920,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":162,"fiber_id":3048,"pid":162,"subject":"Async::Task","object_id":3056,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":177,"fiber_id":3496,"pid":177,"subject":"Async::Task","object_id":3504,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":123,"fiber_id":2680,"pid":123,"subject":"Async::Task","object_id":2688,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":153,"fiber_id":3000,"pid":153,"subject":"Async::Task","object_id":3008,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":39,"fiber_id":2296,"pid":39,"subject":"Async::Task","object_id":2304,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":177,"fiber_id":3512,"pid":177,"subject":"Async::Task","object_id":3520,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":123,"fiber_id":2696,"pid":123,"subject":"Async::Task","object_id":2704,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":162,"fiber_id":3064,"pid":162,"subject":"Async::Task","object_id":3072,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":141,"fiber_id":2792,"pid":141,"subject":"Async::Task","object_id":2800,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":48,"fiber_id":2248,"pid":48,"subject":"Async::Task","object_id":2256,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":132,"fiber_id":2872,"pid":132,"subject":"Async::Task","object_id":2880,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":132,"fiber_id":2888,"pid":132,"subject":"Async::Task","object_id":2896,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":132,"fiber_id":2904,"pid":132,"subject":"Async::Task","object_id":2912,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":132,"fiber_id":2920,"pid":132,"subject":"Async::Task","object_id":2928,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":132,"fiber_id":2936,"pid":132,"subject":"Async::Task","object_id":2944,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":132,"fiber_id":2952,"pid":132,"subject":"Async::Task","object_id":2960,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":15,"fiber_id":2168,"pid":15,"subject":"Async::Task","object_id":2176,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":132,"fiber_id":2968,"pid":132,"subject":"Async::Task","object_id":2976,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":87,"fiber_id":2552,"pid":87,"subject":"Async::Task","object_id":2560,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":177,"fiber_id":3528,"pid":177,"subject":"Async::Task","object_id":3536,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":132,"fiber_id":2984,"pid":132,"subject":"Async::Task","object_id":2992,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":96,"fiber_id":2600,"pid":96,"subject":"Async::Task","object_id":2608,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":165,"fiber_id":3256,"pid":165,"subject":"Async::Task","object_id":3264,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":132,"fiber_id":3000,"pid":132,"subject":"Async::Task","object_id":3008,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":132,"fiber_id":3016,"pid":132,"subject":"Async::Task","object_id":3024,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":174,"fiber_id":3272,"pid":174,"subject":"Async::Task","object_id":3280,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":141,"fiber_id":2808,"pid":141,"subject":"Async::Task","object_id":2816,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":132,"fiber_id":3032,"pid":132,"subject":"Async::Task","object_id":3040,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":174,"fiber_id":3288,"pid":174,"subject":"Async::Task","object_id":3296,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":141,"fiber_id":2824,"pid":141,"subject":"Async::Task","object_id":2832,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":132,"fiber_id":3048,"pid":132,"subject":"Async::Task","object_id":3056,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":189,"fiber_id":3224,"pid":189,"subject":"Async::Task","object_id":3232,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":132,"fiber_id":3064,"pid":132,"subject":"Async::Task","object_id":3072,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":168,"fiber_id":3016,"pid":168,"subject":"Async::Task","object_id":3024,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":132,"fiber_id":3080,"pid":132,"subject":"Async::Task","object_id":3088,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":189,"fiber_id":3240,"pid":189,"subject":"Async::Task","object_id":3248,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":24,"fiber_id":2136,"pid":24,"subject":"Async::Task","object_id":2144,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":129,"fiber_id":2472,"pid":129,"subject":"Async::Task","object_id":2480,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":168,"fiber_id":3032,"pid":168,"subject":"Async::Task","object_id":3040,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":132,"fiber_id":3096,"pid":132,"subject":"Async::Task","object_id":3104,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":129,"fiber_id":2488,"pid":129,"subject":"Async::Task","object_id":2496,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":24,"fiber_id":2152,"pid":24,"subject":"Async::Task","object_id":2160,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":189,"fiber_id":3256,"pid":189,"subject":"Async::Task","object_id":3264,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":132,"fiber_id":3112,"pid":132,"subject":"Async::Task","object_id":3120,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":168,"fiber_id":3048,"pid":168,"subject":"Async::Task","object_id":3056,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":195,"fiber_id":3480,"pid":195,"subject":"Async::Task","object_id":3488,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":147,"fiber_id":2824,"pid":147,"subject":"Async::Task","object_id":2832,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":63,"fiber_id":2232,"pid":63,"subject":"Async::Task","object_id":2240,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":195,"fiber_id":3496,"pid":195,"subject":"Async::Task","object_id":3504,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":12,"fiber_id":2056,"pid":12,"subject":"Async::Task","object_id":2064,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":189,"fiber_id":3272,"pid":189,"subject":"Async::Task","object_id":3280,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":60,"fiber_id":2200,"pid":60,"subject":"Async::Task","object_id":2208,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":159,"fiber_id":2904,"pid":159,"subject":"Async::Task","object_id":2912,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":111,"fiber_id":2664,"pid":111,"subject":"Async::Task","object_id":2672,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":120,"fiber_id":2728,"pid":120,"subject":"Async::Task","object_id":2736,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":63,"fiber_id":2248,"pid":63,"subject":"Async::Task","object_id":2256,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":57,"fiber_id":2472,"pid":57,"subject":"Async::Task","object_id":2480,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":30,"fiber_id":2216,"pid":30,"subject":"Async::Task","object_id":2224,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":72,"fiber_id":2280,"pid":72,"subject":"Async::Task","object_id":2288,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":132,"fiber_id":3128,"pid":132,"subject":"Async::Task","object_id":3136,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":12,"fiber_id":2072,"pid":12,"subject":"Async::Task","object_id":2080,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":132,"fiber_id":3144,"pid":132,"subject":"Async::Task","object_id":3152,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":39,"fiber_id":2312,"pid":39,"subject":"Async::Task","object_id":2320,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":60,"fiber_id":2216,"pid":60,"subject":"Async::Task","object_id":2224,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":111,"fiber_id":2680,"pid":111,"subject":"Async::Task","object_id":2688,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":120,"fiber_id":2744,"pid":120,"subject":"Async::Task","object_id":2752,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":42,"fiber_id":1976,"pid":42,"subject":"Async::Task","object_id":1984,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":57,"fiber_id":2488,"pid":57,"subject":"Async::Task","object_id":2496,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":132,"fiber_id":3160,"pid":132,"subject":"Async::Task","object_id":3168,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":12,"fiber_id":2088,"pid":12,"subject":"Async::Task","object_id":2096,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":129,"fiber_id":2504,"pid":129,"subject":"Async::Task","object_id":2512,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":93,"fiber_id":2552,"pid":93,"subject":"Async::Task","object_id":2560,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":120,"fiber_id":2760,"pid":120,"subject":"Async::Task","object_id":2768,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":57,"fiber_id":2504,"pid":57,"subject":"Async::Task","object_id":2512,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":132,"fiber_id":3176,"pid":132,"subject":"Async::Task","object_id":3184,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":42,"fiber_id":1992,"pid":42,"subject":"Async::Task","object_id":2000,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":12,"fiber_id":2104,"pid":12,"subject":"Async::Task","object_id":2112,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":192,"fiber_id":3288,"pid":192,"subject":"Async::Task","object_id":3296,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":120,"fiber_id":2776,"pid":120,"subject":"Async::Task","object_id":2784,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":135,"fiber_id":2648,"pid":135,"subject":"Async::Task","object_id":2656,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":132,"fiber_id":3192,"pid":132,"subject":"Async::Task","object_id":3200,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":42,"fiber_id":2008,"pid":42,"subject":"Async::Task","object_id":2016,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":198,"fiber_id":3368,"pid":198,"subject":"Async::Task","object_id":3376,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":132,"fiber_id":3208,"pid":132,"subject":"Async::Task","object_id":3216,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":132,"fiber_id":3224,"pid":132,"subject":"Async::Task","object_id":3232,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":93,"fiber_id":2568,"pid":93,"subject":"Async::Task","object_id":2576,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":24,"fiber_id":2168,"pid":24,"subject":"Async::Task","object_id":2176,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":132,"fiber_id":3240,"pid":132,"subject":"Async::Task","object_id":3248,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":99,"fiber_id":2696,"pid":99,"subject":"Async::Task","object_id":2704,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":75,"fiber_id":2248,"pid":75,"subject":"Async::Task","object_id":2256,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":33,"fiber_id":2296,"pid":33,"subject":"Async::Task","object_id":2304,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":189,"fiber_id":3288,"pid":189,"subject":"Async::Task","object_id":3296,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":123,"fiber_id":2712,"pid":123,"subject":"Async::Task","object_id":2720,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":114,"fiber_id":2728,"pid":114,"subject":"Async::Task","object_id":2736,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":132,"fiber_id":3256,"pid":132,"subject":"Async::Task","object_id":3264,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":99,"fiber_id":2712,"pid":99,"subject":"Async::Task","object_id":2720,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":105,"fiber_id":2664,"pid":105,"subject":"Async::Task","object_id":2672,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":120,"fiber_id":2792,"pid":120,"subject":"Async::Task","object_id":2800,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":33,"fiber_id":2312,"pid":33,"subject":"Async::Task","object_id":2320,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":27,"fiber_id":1912,"pid":27,"subject":"Async::Task","object_id":1920,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":174,"fiber_id":3304,"pid":174,"subject":"Async::Task","object_id":3312,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":117,"fiber_id":2792,"pid":117,"subject":"Async::Task","object_id":2800,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":132,"fiber_id":3272,"pid":132,"subject":"Async::Task","object_id":3280,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":33,"fiber_id":2328,"pid":33,"subject":"Async::Task","object_id":2336,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":171,"fiber_id":2920,"pid":171,"subject":"Async::Task","object_id":2928,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":117,"fiber_id":2808,"pid":117,"subject":"Async::Task","object_id":2816,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":51,"fiber_id":1928,"pid":51,"subject":"Async::Task","object_id":1936,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":33,"fiber_id":2344,"pid":33,"subject":"Async::Task","object_id":2352,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":96,"fiber_id":2616,"pid":96,"subject":"Async::Task","object_id":2624,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":192,"fiber_id":3304,"pid":192,"subject":"Async::Task","object_id":3312,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":15,"fiber_id":2184,"pid":15,"subject":"Async::Task","object_id":2192,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":63,"fiber_id":2264,"pid":63,"subject":"Async::Task","object_id":2272,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":48,"fiber_id":2264,"pid":48,"subject":"Async::Task","object_id":2272,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":135,"fiber_id":2664,"pid":135,"subject":"Async::Task","object_id":2672,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":153,"fiber_id":3016,"pid":153,"subject":"Async::Task","object_id":3024,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":174,"fiber_id":3320,"pid":174,"subject":"Async::Task","object_id":3328,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":123,"fiber_id":2728,"pid":123,"subject":"Async::Task","object_id":2736,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":117,"fiber_id":2824,"pid":117,"subject":"Async::Task","object_id":2832,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":84,"fiber_id":2472,"pid":84,"subject":"Async::Task","object_id":2480,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":81,"fiber_id":2344,"pid":81,"subject":"Async::Task","object_id":2352,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":138,"fiber_id":2504,"pid":138,"subject":"Async::Task","object_id":2512,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":51,"fiber_id":1944,"pid":51,"subject":"Async::Task","object_id":1952,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":48,"fiber_id":2280,"pid":48,"subject":"Async::Task","object_id":2288,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":135,"fiber_id":2680,"pid":135,"subject":"Async::Task","object_id":2688,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":195,"fiber_id":3512,"pid":195,"subject":"Async::Task","object_id":3520,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":18,"fiber_id":2232,"pid":18,"subject":"Async::Task","object_id":2240,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":45,"fiber_id":2088,"pid":45,"subject":"Async::Task","object_id":2096,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":33,"fiber_id":2360,"pid":33,"subject":"Async::Task","object_id":2368,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":111,"fiber_id":2696,"pid":111,"subject":"Async::Task","object_id":2704,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":90,"fiber_id":2392,"pid":90,"subject":"Async::Task","object_id":2400,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":189,"fiber_id":3304,"pid":189,"subject":"Async::Task","object_id":3312,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":93,"fiber_id":2584,"pid":93,"subject":"Async::Task","object_id":2592,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":186,"fiber_id":3160,"pid":186,"subject":"Async::Task","object_id":3168,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":99,"fiber_id":2728,"pid":99,"subject":"Async::Task","object_id":2736,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":129,"fiber_id":2520,"pid":129,"subject":"Async::Task","object_id":2528,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":42,"fiber_id":2024,"pid":42,"subject":"Async::Task","object_id":2032,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":39,"fiber_id":2328,"pid":39,"subject":"Async::Task","object_id":2336,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":186,"fiber_id":3176,"pid":186,"subject":"Async::Task","object_id":3184,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":189,"fiber_id":3320,"pid":189,"subject":"Async::Task","object_id":3328,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":159,"fiber_id":2920,"pid":159,"subject":"Async::Task","object_id":2928,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":96,"fiber_id":2632,"pid":96,"subject":"Async::Task","object_id":2640,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":168,"fiber_id":3064,"pid":168,"subject":"Async::Task","object_id":3072,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":153,"fiber_id":3032,"pid":153,"subject":"Async::Task","object_id":3040,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":60,"fiber_id":2232,"pid":60,"subject":"Async::Task","object_id":2240,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":141,"fiber_id":2840,"pid":141,"subject":"Async::Task","object_id":2848,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":18,"fiber_id":2248,"pid":18,"subject":"Async::Task","object_id":2256,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":129,"fiber_id":2536,"pid":129,"subject":"Async::Task","object_id":2544,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":168,"fiber_id":3080,"pid":168,"subject":"Async::Task","object_id":3088,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":48,"fiber_id":2296,"pid":48,"subject":"Async::Task","object_id":2304,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":60,"fiber_id":2248,"pid":60,"subject":"Async::Task","object_id":2256,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":171,"fiber_id":2936,"pid":171,"subject":"Async::Task","object_id":2944,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":186,"fiber_id":3192,"pid":186,"subject":"Async::Task","object_id":3200,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":144,"fiber_id":2568,"pid":144,"subject":"Async::Task","object_id":2576,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":18,"fiber_id":2264,"pid":18,"subject":"Async::Task","object_id":2272,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":132,"fiber_id":3288,"pid":132,"subject":"Async::Task","object_id":3296,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":117,"fiber_id":2840,"pid":117,"subject":"Async::Task","object_id":2848,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":192,"fiber_id":3320,"pid":192,"subject":"Async::Task","object_id":3328,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":9,"fiber_id":2024,"pid":9,"subject":"Async::Task","object_id":2032,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":75,"fiber_id":2264,"pid":75,"subject":"Async::Task","object_id":2272,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":78,"fiber_id":2488,"pid":78,"subject":"Async::Task","object_id":2496,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":108,"fiber_id":2472,"pid":108,"subject":"Async::Task","object_id":2480,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":90,"fiber_id":2408,"pid":90,"subject":"Async::Task","object_id":2416,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":57,"fiber_id":2520,"pid":57,"subject":"Async::Task","object_id":2528,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":171,"fiber_id":2952,"pid":171,"subject":"Async::Task","object_id":2960,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":72,"fiber_id":2296,"pid":72,"subject":"Async::Task","object_id":2304,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":156,"fiber_id":2856,"pid":156,"subject":"Async::Task","object_id":2864,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":183,"fiber_id":3064,"pid":183,"subject":"Async::Task","object_id":3072,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":126,"fiber_id":2584,"pid":126,"subject":"Async::Task","object_id":2592,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":144,"fiber_id":2584,"pid":144,"subject":"Async::Task","object_id":2592,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":108,"fiber_id":2488,"pid":108,"subject":"Async::Task","object_id":2496,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":111,"fiber_id":2712,"pid":111,"subject":"Async::Task","object_id":2720,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":12,"fiber_id":2120,"pid":12,"subject":"Async::Task","object_id":2128,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":60,"fiber_id":2264,"pid":60,"subject":"Async::Task","object_id":2272,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":42,"fiber_id":2040,"pid":42,"subject":"Async::Task","object_id":2048,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":153,"fiber_id":3048,"pid":153,"subject":"Async::Task","object_id":3056,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":36,"fiber_id":2216,"pid":36,"subject":"Async::Task","object_id":2224,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":15,"fiber_id":2200,"pid":15,"subject":"Async::Task","object_id":2208,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":150,"fiber_id":2920,"pid":150,"subject":"Async::Task","object_id":2928,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":198,"fiber_id":3384,"pid":198,"subject":"Async::Task","object_id":3392,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":132,"fiber_id":3304,"pid":132,"subject":"Async::Task","object_id":3312,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":99,"fiber_id":2744,"pid":99,"subject":"Async::Task","object_id":2752,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":39,"fiber_id":2344,"pid":39,"subject":"Async::Task","object_id":2352,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":159,"fiber_id":2936,"pid":159,"subject":"Async::Task","object_id":2944,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":69,"fiber_id":2152,"pid":69,"subject":"Async::Task","object_id":2160,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":189,"fiber_id":3336,"pid":189,"subject":"Async::Task","object_id":3344,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":111,"fiber_id":2728,"pid":111,"subject":"Async::Task","object_id":2736,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":51,"fiber_id":1960,"pid":51,"subject":"Async::Task","object_id":1968,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":21,"fiber_id":1960,"pid":21,"subject":"Async::Task","object_id":1968,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":33,"fiber_id":2376,"pid":33,"subject":"Async::Task","object_id":2384,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":159,"fiber_id":2952,"pid":159,"subject":"Async::Task","object_id":2960,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":99,"fiber_id":2760,"pid":99,"subject":"Async::Task","object_id":2768,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":156,"fiber_id":2872,"pid":156,"subject":"Async::Task","object_id":2880,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":132,"fiber_id":3320,"pid":132,"subject":"Async::Task","object_id":3328,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":60,"fiber_id":2280,"pid":60,"subject":"Async::Task","object_id":2288,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":69,"fiber_id":2168,"pid":69,"subject":"Async::Task","object_id":2176,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":54,"fiber_id":2376,"pid":54,"subject":"Async::Task","object_id":2384,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":168,"fiber_id":3096,"pid":168,"subject":"Async::Task","object_id":3104,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":42,"fiber_id":2056,"pid":42,"subject":"Async::Task","object_id":2064,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":60,"fiber_id":2296,"pid":60,"subject":"Async::Task","object_id":2304,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":162,"fiber_id":3080,"pid":162,"subject":"Async::Task","object_id":3088,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":162,"fiber_id":3096,"pid":162,"subject":"Async::Task","object_id":3104,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":189,"fiber_id":3352,"pid":189,"subject":"Async::Task","object_id":3360,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":162,"fiber_id":3112,"pid":162,"subject":"Async::Task","object_id":3120,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":189,"fiber_id":3368,"pid":189,"subject":"Async::Task","object_id":3376,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":114,"fiber_id":2744,"pid":114,"subject":"Async::Task","object_id":2752,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":75,"fiber_id":2280,"pid":75,"subject":"Async::Task","object_id":2288,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":51,"fiber_id":1976,"pid":51,"subject":"Async::Task","object_id":1984,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":180,"fiber_id":3384,"pid":180,"subject":"Async::Task","object_id":3392,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":162,"fiber_id":3128,"pid":162,"subject":"Async::Task","object_id":3136,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":168,"fiber_id":3112,"pid":168,"subject":"Async::Task","object_id":3120,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":63,"fiber_id":2280,"pid":63,"subject":"Async::Task","object_id":2288,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":177,"fiber_id":3544,"pid":177,"subject":"Async::Task","object_id":3552,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":90,"fiber_id":2424,"pid":90,"subject":"Async::Task","object_id":2432,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":168,"fiber_id":3128,"pid":168,"subject":"Async::Task","object_id":3136,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":24,"fiber_id":2184,"pid":24,"subject":"Async::Task","object_id":2192,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":144,"fiber_id":2600,"pid":144,"subject":"Async::Task","object_id":2608,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":159,"fiber_id":2968,"pid":159,"subject":"Async::Task","object_id":2976,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":36,"fiber_id":2232,"pid":36,"subject":"Async::Task","object_id":2240,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":12,"fiber_id":2136,"pid":12,"subject":"Async::Task","object_id":2144,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":24,"fiber_id":2200,"pid":24,"subject":"Async::Task","object_id":2208,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":141,"fiber_id":2856,"pid":141,"subject":"Async::Task","object_id":2864,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":195,"fiber_id":3528,"pid":195,"subject":"Async::Task","object_id":3536,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":159,"fiber_id":2984,"pid":159,"subject":"Async::Task","object_id":2992,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":111,"fiber_id":2744,"pid":111,"subject":"Async::Task","object_id":2752,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":135,"fiber_id":2696,"pid":135,"subject":"Async::Task","object_id":2704,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":120,"fiber_id":2808,"pid":120,"subject":"Async::Task","object_id":2816,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":24,"fiber_id":2216,"pid":24,"subject":"Async::Task","object_id":2224,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":189,"fiber_id":3384,"pid":189,"subject":"Async::Task","object_id":3392,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":159,"fiber_id":3000,"pid":159,"subject":"Async::Task","object_id":3008,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":117,"fiber_id":2856,"pid":117,"subject":"Async::Task","object_id":2864,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":186,"fiber_id":3208,"pid":186,"subject":"Async::Task","object_id":3216,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":102,"fiber_id":2616,"pid":102,"subject":"Async::Task","object_id":2624,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":111,"fiber_id":2760,"pid":111,"subject":"Async::Task","object_id":2768,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":135,"fiber_id":2712,"pid":135,"subject":"Async::Task","object_id":2720,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":24,"fiber_id":2232,"pid":24,"subject":"Async::Task","object_id":2240,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":144,"fiber_id":2616,"pid":144,"subject":"Async::Task","object_id":2624,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":189,"fiber_id":3400,"pid":189,"subject":"Async::Task","object_id":3408,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":81,"fiber_id":2360,"pid":81,"subject":"Async::Task","object_id":2368,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":159,"fiber_id":3016,"pid":159,"subject":"Async::Task","object_id":3024,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":186,"fiber_id":3224,"pid":186,"subject":"Async::Task","object_id":3232,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":135,"fiber_id":2728,"pid":135,"subject":"Async::Task","object_id":2736,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":123,"fiber_id":2744,"pid":123,"subject":"Async::Task","object_id":2752,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":36,"fiber_id":2248,"pid":36,"subject":"Async::Task","object_id":2256,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":12,"fiber_id":2152,"pid":12,"subject":"Async::Task","object_id":2160,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":87,"fiber_id":2568,"pid":87,"subject":"Async::Task","object_id":2576,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":9,"fiber_id":2040,"pid":9,"subject":"Async::Task","object_id":2048,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":102,"fiber_id":2632,"pid":102,"subject":"Async::Task","object_id":2640,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":150,"fiber_id":2936,"pid":150,"subject":"Async::Task","object_id":2944,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":135,"fiber_id":2744,"pid":135,"subject":"Async::Task","object_id":2752,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":33,"fiber_id":2392,"pid":33,"subject":"Async::Task","object_id":2400,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":75,"fiber_id":2296,"pid":75,"subject":"Async::Task","object_id":2304,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":165,"fiber_id":3272,"pid":165,"subject":"Async::Task","object_id":3280,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":150,"fiber_id":2952,"pid":150,"subject":"Async::Task","object_id":2960,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":105,"fiber_id":2680,"pid":105,"subject":"Async::Task","object_id":2688,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":102,"fiber_id":2648,"pid":102,"subject":"Async::Task","object_id":2656,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":63,"fiber_id":2296,"pid":63,"subject":"Async::Task","object_id":2304,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":159,"fiber_id":3032,"pid":159,"subject":"Async::Task","object_id":3040,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":42,"fiber_id":2072,"pid":42,"subject":"Async::Task","object_id":2080,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":24,"fiber_id":2248,"pid":24,"subject":"Async::Task","object_id":2256,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":111,"fiber_id":2776,"pid":111,"subject":"Async::Task","object_id":2784,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":54,"fiber_id":2392,"pid":54,"subject":"Async::Task","object_id":2400,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":189,"fiber_id":3416,"pid":189,"subject":"Async::Task","object_id":3424,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":48,"fiber_id":2312,"pid":48,"subject":"Async::Task","object_id":2320,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":63,"fiber_id":2312,"pid":63,"subject":"Async::Task","object_id":2320,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":42,"fiber_id":2088,"pid":42,"subject":"Async::Task","object_id":2096,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":120,"fiber_id":2824,"pid":120,"subject":"Async::Task","object_id":2832,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":57,"fiber_id":2536,"pid":57,"subject":"Async::Task","object_id":2544,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":144,"fiber_id":2632,"pid":144,"subject":"Async::Task","object_id":2640,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":48,"fiber_id":2328,"pid":48,"subject":"Async::Task","object_id":2336,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":27,"fiber_id":1928,"pid":27,"subject":"Async::Task","object_id":1936,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":186,"fiber_id":3240,"pid":186,"subject":"Async::Task","object_id":3248,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":36,"fiber_id":2264,"pid":36,"subject":"Async::Task","object_id":2272,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":93,"fiber_id":2600,"pid":93,"subject":"Async::Task","object_id":2608,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":48,"fiber_id":2344,"pid":48,"subject":"Async::Task","object_id":2352,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":60,"fiber_id":2312,"pid":60,"subject":"Async::Task","object_id":2320,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":75,"fiber_id":2312,"pid":75,"subject":"Async::Task","object_id":2320,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":36,"fiber_id":2280,"pid":36,"subject":"Async::Task","object_id":2288,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":90,"fiber_id":2440,"pid":90,"subject":"Async::Task","object_id":2448,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":42,"fiber_id":2104,"pid":42,"subject":"Async::Task","object_id":2112,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":141,"fiber_id":2872,"pid":141,"subject":"Async::Task","object_id":2880,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":138,"fiber_id":2520,"pid":138,"subject":"Async::Task","object_id":2528,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":93,"fiber_id":2616,"pid":93,"subject":"Async::Task","object_id":2624,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":114,"fiber_id":2760,"pid":114,"subject":"Async::Task","object_id":2768,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":117,"fiber_id":2872,"pid":117,"subject":"Async::Task","object_id":2880,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":93,"fiber_id":2632,"pid":93,"subject":"Async::Task","object_id":2640,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":177,"fiber_id":3560,"pid":177,"subject":"Async::Task","object_id":3568,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":33,"fiber_id":2408,"pid":33,"subject":"Async::Task","object_id":2416,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":93,"fiber_id":2648,"pid":93,"subject":"Async::Task","object_id":2656,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":177,"fiber_id":3576,"pid":177,"subject":"Async::Task","object_id":3584,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":87,"fiber_id":2584,"pid":87,"subject":"Async::Task","object_id":2592,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":51,"fiber_id":1992,"pid":51,"subject":"Async::Task","object_id":2000,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":90,"fiber_id":2456,"pid":90,"subject":"Async::Task","object_id":2464,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":93,"fiber_id":2664,"pid":93,"subject":"Async::Task","object_id":2672,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":129,"fiber_id":2552,"pid":129,"subject":"Async::Task","object_id":2560,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":126,"fiber_id":2600,"pid":126,"subject":"Async::Task","object_id":2608,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":87,"fiber_id":2600,"pid":87,"subject":"Async::Task","object_id":2608,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":186,"fiber_id":3256,"pid":186,"subject":"Async::Task","object_id":3264,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":90,"fiber_id":2472,"pid":90,"subject":"Async::Task","object_id":2480,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":177,"fiber_id":3592,"pid":177,"subject":"Async::Task","object_id":3600,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":105,"fiber_id":2696,"pid":105,"subject":"Async::Task","object_id":2704,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":174,"fiber_id":3336,"pid":174,"subject":"Async::Task","object_id":3344,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":141,"fiber_id":2888,"pid":141,"subject":"Async::Task","object_id":2896,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":90,"fiber_id":2488,"pid":90,"subject":"Async::Task","object_id":2496,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":186,"fiber_id":3272,"pid":186,"subject":"Async::Task","object_id":3280,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":183,"fiber_id":3080,"pid":183,"subject":"Async::Task","object_id":3088,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":93,"fiber_id":2680,"pid":93,"subject":"Async::Task","object_id":2688,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":24,"fiber_id":2264,"pid":24,"subject":"Async::Task","object_id":2272,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":36,"fiber_id":2296,"pid":36,"subject":"Async::Task","object_id":2304,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":165,"fiber_id":3288,"pid":165,"subject":"Async::Task","object_id":3296,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":90,"fiber_id":2504,"pid":90,"subject":"Async::Task","object_id":2512,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":186,"fiber_id":3288,"pid":186,"subject":"Async::Task","object_id":3296,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":105,"fiber_id":2712,"pid":105,"subject":"Async::Task","object_id":2720,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":141,"fiber_id":2904,"pid":141,"subject":"Async::Task","object_id":2912,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":123,"fiber_id":2760,"pid":123,"subject":"Async::Task","object_id":2768,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":189,"fiber_id":3432,"pid":189,"subject":"Async::Task","object_id":3440,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":90,"fiber_id":2520,"pid":90,"subject":"Async::Task","object_id":2528,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":33,"fiber_id":2424,"pid":33,"subject":"Async::Task","object_id":2432,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":51,"fiber_id":2008,"pid":51,"subject":"Async::Task","object_id":2016,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":147,"fiber_id":2840,"pid":147,"subject":"Async::Task","object_id":2848,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":15,"fiber_id":2216,"pid":15,"subject":"Async::Task","object_id":2224,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":12,"fiber_id":2168,"pid":12,"subject":"Async::Task","object_id":2176,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":117,"fiber_id":2888,"pid":117,"subject":"Async::Task","object_id":2896,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":24,"fiber_id":2280,"pid":24,"subject":"Async::Task","object_id":2288,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":108,"fiber_id":2504,"pid":108,"subject":"Async::Task","object_id":2512,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":102,"fiber_id":2664,"pid":102,"subject":"Async::Task","object_id":2672,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":72,"fiber_id":2312,"pid":72,"subject":"Async::Task","object_id":2320,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":141,"fiber_id":2920,"pid":141,"subject":"Async::Task","object_id":2928,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":159,"fiber_id":3048,"pid":159,"subject":"Async::Task","object_id":3056,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":198,"fiber_id":3400,"pid":198,"subject":"Async::Task","object_id":3408,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":114,"fiber_id":2776,"pid":114,"subject":"Async::Task","object_id":2784,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":168,"fiber_id":3144,"pid":168,"subject":"Async::Task","object_id":3152,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":120,"fiber_id":2840,"pid":120,"subject":"Async::Task","object_id":2848,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":90,"fiber_id":2536,"pid":90,"subject":"Async::Task","object_id":2544,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":78,"fiber_id":2504,"pid":78,"subject":"Async::Task","object_id":2512,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":108,"fiber_id":2520,"pid":108,"subject":"Async::Task","object_id":2528,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":159,"fiber_id":3064,"pid":159,"subject":"Async::Task","object_id":3072,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":81,"fiber_id":2376,"pid":81,"subject":"Async::Task","object_id":2384,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":39,"fiber_id":2360,"pid":39,"subject":"Async::Task","object_id":2368,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":105,"fiber_id":2728,"pid":105,"subject":"Async::Task","object_id":2736,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":51,"fiber_id":2024,"pid":51,"subject":"Async::Task","object_id":2032,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":12,"fiber_id":2184,"pid":12,"subject":"Async::Task","object_id":2192,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":108,"fiber_id":2536,"pid":108,"subject":"Async::Task","object_id":2544,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":15,"fiber_id":2232,"pid":15,"subject":"Async::Task","object_id":2240,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":189,"fiber_id":3448,"pid":189,"subject":"Async::Task","object_id":3456,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":159,"fiber_id":3080,"pid":159,"subject":"Async::Task","object_id":3088,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":138,"fiber_id":2536,"pid":138,"subject":"Async::Task","object_id":2544,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":195,"fiber_id":3544,"pid":195,"subject":"Async::Task","object_id":3552,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":39,"fiber_id":2376,"pid":39,"subject":"Async::Task","object_id":2384,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":51,"fiber_id":2040,"pid":51,"subject":"Async::Task","object_id":2048,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":63,"fiber_id":2328,"pid":63,"subject":"Async::Task","object_id":2336,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":153,"fiber_id":3064,"pid":153,"subject":"Async::Task","object_id":3072,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":72,"fiber_id":2328,"pid":72,"subject":"Async::Task","object_id":2336,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":189,"fiber_id":3464,"pid":189,"subject":"Async::Task","object_id":3472,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":60,"fiber_id":2328,"pid":60,"subject":"Async::Task","object_id":2336,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":165,"fiber_id":3304,"pid":165,"subject":"Async::Task","object_id":3312,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":21,"fiber_id":1976,"pid":21,"subject":"Async::Task","object_id":1984,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":174,"fiber_id":3352,"pid":174,"subject":"Async::Task","object_id":3360,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":120,"fiber_id":2856,"pid":120,"subject":"Async::Task","object_id":2864,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":195,"fiber_id":3560,"pid":195,"subject":"Async::Task","object_id":3568,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":39,"fiber_id":2392,"pid":39,"subject":"Async::Task","object_id":2400,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":51,"fiber_id":2056,"pid":51,"subject":"Async::Task","object_id":2064,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":75,"fiber_id":2328,"pid":75,"subject":"Async::Task","object_id":2336,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":156,"fiber_id":2888,"pid":156,"subject":"Async::Task","object_id":2896,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":111,"fiber_id":2792,"pid":111,"subject":"Async::Task","object_id":2800,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":66,"fiber_id":2344,"pid":66,"subject":"Async::Task","object_id":2352,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":93,"fiber_id":2696,"pid":93,"subject":"Async::Task","object_id":2704,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":39,"fiber_id":2408,"pid":39,"subject":"Async::Task","object_id":2416,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":114,"fiber_id":2792,"pid":114,"subject":"Async::Task","object_id":2800,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":108,"fiber_id":2552,"pid":108,"subject":"Async::Task","object_id":2560,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":165,"fiber_id":3320,"pid":165,"subject":"Async::Task","object_id":3328,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":162,"fiber_id":3144,"pid":162,"subject":"Async::Task","object_id":3152,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":111,"fiber_id":2808,"pid":111,"subject":"Async::Task","object_id":2816,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":51,"fiber_id":2072,"pid":51,"subject":"Async::Task","object_id":2080,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":66,"fiber_id":2360,"pid":66,"subject":"Async::Task","object_id":2368,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":42,"fiber_id":2120,"pid":42,"subject":"Async::Task","object_id":2128,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":12,"fiber_id":2200,"pid":12,"subject":"Async::Task","object_id":2208,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":111,"fiber_id":2824,"pid":111,"subject":"Async::Task","object_id":2832,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":186,"fiber_id":3304,"pid":186,"subject":"Async::Task","object_id":3312,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":147,"fiber_id":2856,"pid":147,"subject":"Async::Task","object_id":2864,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":129,"fiber_id":2568,"pid":129,"subject":"Async::Task","object_id":2576,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":117,"fiber_id":2904,"pid":117,"subject":"Async::Task","object_id":2912,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":21,"fiber_id":1992,"pid":21,"subject":"Async::Task","object_id":2000,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":87,"fiber_id":2616,"pid":87,"subject":"Async::Task","object_id":2624,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":138,"fiber_id":2552,"pid":138,"subject":"Async::Task","object_id":2560,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":183,"fiber_id":3096,"pid":183,"subject":"Async::Task","object_id":3104,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":126,"fiber_id":2616,"pid":126,"subject":"Async::Task","object_id":2624,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":69,"fiber_id":2184,"pid":69,"subject":"Async::Task","object_id":2192,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":102,"fiber_id":2680,"pid":102,"subject":"Async::Task","object_id":2688,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":27,"fiber_id":1944,"pid":27,"subject":"Async::Task","object_id":1952,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":99,"fiber_id":2776,"pid":99,"subject":"Async::Task","object_id":2784,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":87,"fiber_id":2632,"pid":87,"subject":"Async::Task","object_id":2640,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":114,"fiber_id":2808,"pid":114,"subject":"Async::Task","object_id":2816,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":51,"fiber_id":2088,"pid":51,"subject":"Async::Task","object_id":2096,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":198,"fiber_id":3416,"pid":198,"subject":"Async::Task","object_id":3424,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":54,"fiber_id":2408,"pid":54,"subject":"Async::Task","object_id":2416,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":159,"fiber_id":3096,"pid":159,"subject":"Async::Task","object_id":3104,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":120,"fiber_id":2872,"pid":120,"subject":"Async::Task","object_id":2880,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":45,"fiber_id":2104,"pid":45,"subject":"Async::Task","object_id":2112,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":18,"fiber_id":2280,"pid":18,"subject":"Async::Task","object_id":2288,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":84,"fiber_id":2488,"pid":84,"subject":"Async::Task","object_id":2496,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":174,"fiber_id":3368,"pid":174,"subject":"Async::Task","object_id":3376,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":81,"fiber_id":2392,"pid":81,"subject":"Async::Task","object_id":2400,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":186,"fiber_id":3320,"pid":186,"subject":"Async::Task","object_id":3328,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":147,"fiber_id":2872,"pid":147,"subject":"Async::Task","object_id":2880,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":51,"fiber_id":2104,"pid":51,"subject":"Async::Task","object_id":2112,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":138,"fiber_id":2568,"pid":138,"subject":"Async::Task","object_id":2576,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":60,"fiber_id":2344,"pid":60,"subject":"Async::Task","object_id":2352,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":126,"fiber_id":2632,"pid":126,"subject":"Async::Task","object_id":2640,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":72,"fiber_id":2344,"pid":72,"subject":"Async::Task","object_id":2352,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":30,"fiber_id":2232,"pid":30,"subject":"Async::Task","object_id":2240,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":186,"fiber_id":3336,"pid":186,"subject":"Async::Task","object_id":3344,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":51,"fiber_id":2120,"pid":51,"subject":"Async::Task","object_id":2128,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":198,"fiber_id":3432,"pid":198,"subject":"Async::Task","object_id":3440,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":120,"fiber_id":2888,"pid":120,"subject":"Async::Task","object_id":2896,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":117,"fiber_id":2920,"pid":117,"subject":"Async::Task","object_id":2928,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":120,"fiber_id":2904,"pid":120,"subject":"Async::Task","object_id":2912,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":150,"fiber_id":2968,"pid":150,"subject":"Async::Task","object_id":2976,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":123,"fiber_id":2776,"pid":123,"subject":"Async::Task","object_id":2784,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":84,"fiber_id":2504,"pid":84,"subject":"Async::Task","object_id":2512,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":171,"fiber_id":2968,"pid":171,"subject":"Async::Task","object_id":2976,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":126,"fiber_id":2648,"pid":126,"subject":"Async::Task","object_id":2656,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":72,"fiber_id":2360,"pid":72,"subject":"Async::Task","object_id":2368,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":147,"fiber_id":2888,"pid":147,"subject":"Async::Task","object_id":2896,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":186,"fiber_id":3352,"pid":186,"subject":"Async::Task","object_id":3360,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":96,"fiber_id":2648,"pid":96,"subject":"Async::Task","object_id":2656,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":144,"fiber_id":2648,"pid":144,"subject":"Async::Task","object_id":2656,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":147,"fiber_id":2904,"pid":147,"subject":"Async::Task","object_id":2912,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":153,"fiber_id":3080,"pid":153,"subject":"Async::Task","object_id":3088,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":72,"fiber_id":2376,"pid":72,"subject":"Async::Task","object_id":2384,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":186,"fiber_id":3368,"pid":186,"subject":"Async::Task","object_id":3376,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":42,"fiber_id":2136,"pid":42,"subject":"Async::Task","object_id":2144,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":120,"fiber_id":2920,"pid":120,"subject":"Async::Task","object_id":2928,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":87,"fiber_id":2648,"pid":87,"subject":"Async::Task","object_id":2656,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":150,"fiber_id":2984,"pid":150,"subject":"Async::Task","object_id":2992,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":66,"fiber_id":2376,"pid":66,"subject":"Async::Task","object_id":2384,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":81,"fiber_id":2408,"pid":81,"subject":"Async::Task","object_id":2416,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":108,"fiber_id":2568,"pid":108,"subject":"Async::Task","object_id":2576,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":54,"fiber_id":2424,"pid":54,"subject":"Async::Task","object_id":2432,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":105,"fiber_id":2744,"pid":105,"subject":"Async::Task","object_id":2752,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":99,"fiber_id":2792,"pid":99,"subject":"Async::Task","object_id":2800,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":153,"fiber_id":3096,"pid":153,"subject":"Async::Task","object_id":3104,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":18,"fiber_id":2296,"pid":18,"subject":"Async::Task","object_id":2304,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":180,"fiber_id":3400,"pid":180,"subject":"Async::Task","object_id":3408,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":24,"fiber_id":2296,"pid":24,"subject":"Async::Task","object_id":2304,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":27,"fiber_id":1960,"pid":27,"subject":"Async::Task","object_id":1968,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":195,"fiber_id":3576,"pid":195,"subject":"Async::Task","object_id":3584,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":141,"fiber_id":2936,"pid":141,"subject":"Async::Task","object_id":2944,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":48,"fiber_id":2360,"pid":48,"subject":"Async::Task","object_id":2368,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":192,"fiber_id":3336,"pid":192,"subject":"Async::Task","object_id":3344,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":180,"fiber_id":3416,"pid":180,"subject":"Async::Task","object_id":3424,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":75,"fiber_id":2344,"pid":75,"subject":"Async::Task","object_id":2352,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":174,"fiber_id":3384,"pid":174,"subject":"Async::Task","object_id":3392,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":81,"fiber_id":2424,"pid":81,"subject":"Async::Task","object_id":2432,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":189,"fiber_id":3480,"pid":189,"subject":"Async::Task","object_id":3488,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":57,"fiber_id":2552,"pid":57,"subject":"Async::Task","object_id":2560,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":117,"fiber_id":2936,"pid":117,"subject":"Async::Task","object_id":2944,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":156,"fiber_id":2904,"pid":156,"subject":"Async::Task","object_id":2912,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":60,"fiber_id":2360,"pid":60,"subject":"Async::Task","object_id":2368,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":93,"fiber_id":2712,"pid":93,"subject":"Async::Task","object_id":2720,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":63,"fiber_id":2344,"pid":63,"subject":"Async::Task","object_id":2352,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":129,"fiber_id":2584,"pid":129,"subject":"Async::Task","object_id":2592,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":9,"fiber_id":2056,"pid":9,"subject":"Async::Task","object_id":2064,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":114,"fiber_id":2824,"pid":114,"subject":"Async::Task","object_id":2832,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":24,"fiber_id":2312,"pid":24,"subject":"Async::Task","object_id":2320,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":36,"fiber_id":2312,"pid":36,"subject":"Async::Task","object_id":2320,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":177,"fiber_id":3608,"pid":177,"subject":"Async::Task","object_id":3616,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":69,"fiber_id":2200,"pid":69,"subject":"Async::Task","object_id":2208,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":102,"fiber_id":2696,"pid":102,"subject":"Async::Task","object_id":2704,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":189,"fiber_id":3496,"pid":189,"subject":"Async::Task","object_id":3504,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":183,"fiber_id":3112,"pid":183,"subject":"Async::Task","object_id":3120,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":135,"fiber_id":2760,"pid":135,"subject":"Async::Task","object_id":2768,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":192,"fiber_id":3352,"pid":192,"subject":"Async::Task","object_id":3360,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":105,"fiber_id":2760,"pid":105,"subject":"Async::Task","object_id":2768,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":84,"fiber_id":2520,"pid":84,"subject":"Async::Task","object_id":2528,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":27,"fiber_id":1976,"pid":27,"subject":"Async::Task","object_id":1984,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":165,"fiber_id":3336,"pid":165,"subject":"Async::Task","object_id":3344,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":75,"fiber_id":2360,"pid":75,"subject":"Async::Task","object_id":2368,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":177,"fiber_id":3624,"pid":177,"subject":"Async::Task","object_id":3632,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":63,"fiber_id":2360,"pid":63,"subject":"Async::Task","object_id":2368,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":102,"fiber_id":2712,"pid":102,"subject":"Async::Task","object_id":2720,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":60,"fiber_id":2376,"pid":60,"subject":"Async::Task","object_id":2384,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":153,"fiber_id":3112,"pid":153,"subject":"Async::Task","object_id":3120,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":141,"fiber_id":2952,"pid":141,"subject":"Async::Task","object_id":2960,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":108,"fiber_id":2584,"pid":108,"subject":"Async::Task","object_id":2592,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":162,"fiber_id":3160,"pid":162,"subject":"Async::Task","object_id":3168,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":171,"fiber_id":2984,"pid":171,"subject":"Async::Task","object_id":2992,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":150,"fiber_id":3000,"pid":150,"subject":"Async::Task","object_id":3008,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":93,"fiber_id":2728,"pid":93,"subject":"Async::Task","object_id":2736,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":114,"fiber_id":2840,"pid":114,"subject":"Async::Task","object_id":2848,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":69,"fiber_id":2216,"pid":69,"subject":"Async::Task","object_id":2224,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":60,"fiber_id":2392,"pid":60,"subject":"Async::Task","object_id":2400,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":57,"fiber_id":2568,"pid":57,"subject":"Async::Task","object_id":2576,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":126,"fiber_id":2664,"pid":126,"subject":"Async::Task","object_id":2672,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":96,"fiber_id":2664,"pid":96,"subject":"Async::Task","object_id":2672,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":69,"fiber_id":2232,"pid":69,"subject":"Async::Task","object_id":2240,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":198,"fiber_id":3448,"pid":198,"subject":"Async::Task","object_id":3456,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":42,"fiber_id":2152,"pid":42,"subject":"Async::Task","object_id":2160,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":51,"fiber_id":2136,"pid":51,"subject":"Async::Task","object_id":2144,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":84,"fiber_id":2536,"pid":84,"subject":"Async::Task","object_id":2544,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":177,"fiber_id":3640,"pid":177,"subject":"Async::Task","object_id":3648,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":147,"fiber_id":2920,"pid":147,"subject":"Async::Task","object_id":2928,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":81,"fiber_id":2440,"pid":81,"subject":"Async::Task","object_id":2448,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":183,"fiber_id":3128,"pid":183,"subject":"Async::Task","object_id":3136,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":45,"fiber_id":2120,"pid":45,"subject":"Async::Task","object_id":2128,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":192,"fiber_id":3368,"pid":192,"subject":"Async::Task","object_id":3376,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":60,"fiber_id":2408,"pid":60,"subject":"Async::Task","object_id":2416,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":9,"fiber_id":2072,"pid":9,"subject":"Async::Task","object_id":2080,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":123,"fiber_id":2792,"pid":123,"subject":"Async::Task","object_id":2800,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":30,"fiber_id":2248,"pid":30,"subject":"Async::Task","object_id":2256,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":144,"fiber_id":2664,"pid":144,"subject":"Async::Task","object_id":2672,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":153,"fiber_id":3128,"pid":153,"subject":"Async::Task","object_id":3136,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":108,"fiber_id":2600,"pid":108,"subject":"Async::Task","object_id":2608,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":150,"fiber_id":3016,"pid":150,"subject":"Async::Task","object_id":3024,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":21,"fiber_id":2008,"pid":21,"subject":"Async::Task","object_id":2016,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":162,"fiber_id":3176,"pid":162,"subject":"Async::Task","object_id":3184,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":54,"fiber_id":2440,"pid":54,"subject":"Async::Task","object_id":2448,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":36,"fiber_id":2328,"pid":36,"subject":"Async::Task","object_id":2336,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":60,"fiber_id":2424,"pid":60,"subject":"Async::Task","object_id":2432,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":132,"fiber_id":3336,"pid":132,"subject":"Async::Task","object_id":3344,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":21,"fiber_id":2024,"pid":21,"subject":"Async::Task","object_id":2032,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":30,"fiber_id":2264,"pid":30,"subject":"Async::Task","object_id":2272,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":129,"fiber_id":2600,"pid":129,"subject":"Async::Task","object_id":2608,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":123,"fiber_id":2808,"pid":123,"subject":"Async::Task","object_id":2816,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":60,"fiber_id":2440,"pid":60,"subject":"Async::Task","object_id":2448,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":96,"fiber_id":2680,"pid":96,"subject":"Async::Task","object_id":2688,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":30,"fiber_id":2280,"pid":30,"subject":"Async::Task","object_id":2288,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":144,"fiber_id":2680,"pid":144,"subject":"Async::Task","object_id":2688,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":15,"fiber_id":2248,"pid":15,"subject":"Async::Task","object_id":2256,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":186,"fiber_id":3384,"pid":186,"subject":"Async::Task","object_id":3392,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":27,"fiber_id":1992,"pid":27,"subject":"Async::Task","object_id":2000,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":69,"fiber_id":2248,"pid":69,"subject":"Async::Task","object_id":2256,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":153,"fiber_id":3144,"pid":153,"subject":"Async::Task","object_id":3152,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":48,"fiber_id":2376,"pid":48,"subject":"Async::Task","object_id":2384,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":72,"fiber_id":2392,"pid":72,"subject":"Async::Task","object_id":2400,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":18,"fiber_id":2312,"pid":18,"subject":"Async::Task","object_id":2320,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":183,"fiber_id":3144,"pid":183,"subject":"Async::Task","object_id":3152,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":90,"fiber_id":2552,"pid":90,"subject":"Async::Task","object_id":2560,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":78,"fiber_id":2520,"pid":78,"subject":"Async::Task","object_id":2528,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":57,"fiber_id":2584,"pid":57,"subject":"Async::Task","object_id":2592,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":36,"fiber_id":2344,"pid":36,"subject":"Async::Task","object_id":2352,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":81,"fiber_id":2456,"pid":81,"subject":"Async::Task","object_id":2464,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":39,"fiber_id":2424,"pid":39,"subject":"Async::Task","object_id":2432,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":12,"fiber_id":2216,"pid":12,"subject":"Async::Task","object_id":2224,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":165,"fiber_id":3352,"pid":165,"subject":"Async::Task","object_id":3360,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":120,"fiber_id":2936,"pid":120,"subject":"Async::Task","object_id":2944,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":171,"fiber_id":3000,"pid":171,"subject":"Async::Task","object_id":3008,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":51,"fiber_id":2152,"pid":51,"subject":"Async::Task","object_id":2160,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":72,"fiber_id":2408,"pid":72,"subject":"Async::Task","object_id":2416,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":78,"fiber_id":2536,"pid":78,"subject":"Async::Task","object_id":2544,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":30,"fiber_id":2296,"pid":30,"subject":"Async::Task","object_id":2304,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":138,"fiber_id":2584,"pid":138,"subject":"Async::Task","object_id":2592,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":186,"fiber_id":3400,"pid":186,"subject":"Async::Task","object_id":3408,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":42,"fiber_id":2168,"pid":42,"subject":"Async::Task","object_id":2176,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":135,"fiber_id":2776,"pid":135,"subject":"Async::Task","object_id":2784,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":147,"fiber_id":2936,"pid":147,"subject":"Async::Task","object_id":2944,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":54,"fiber_id":2456,"pid":54,"subject":"Async::Task","object_id":2464,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":78,"fiber_id":2552,"pid":78,"subject":"Async::Task","object_id":2560,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":66,"fiber_id":2392,"pid":66,"subject":"Async::Task","object_id":2400,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":162,"fiber_id":3192,"pid":162,"subject":"Async::Task","object_id":3200,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":180,"fiber_id":3432,"pid":180,"subject":"Async::Task","object_id":3440,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":198,"fiber_id":3464,"pid":198,"subject":"Async::Task","object_id":3472,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":102,"fiber_id":2728,"pid":102,"subject":"Async::Task","object_id":2736,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":120,"fiber_id":2952,"pid":120,"subject":"Async::Task","object_id":2960,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":60,"fiber_id":2456,"pid":60,"subject":"Async::Task","object_id":2464,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":117,"fiber_id":2952,"pid":117,"subject":"Async::Task","object_id":2960,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":135,"fiber_id":2792,"pid":135,"subject":"Async::Task","object_id":2800,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":159,"fiber_id":3112,"pid":159,"subject":"Async::Task","object_id":3120,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":9,"fiber_id":2088,"pid":9,"subject":"Async::Task","object_id":2096,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":96,"fiber_id":2696,"pid":96,"subject":"Async::Task","object_id":2704,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":198,"fiber_id":3480,"pid":198,"subject":"Async::Task","object_id":3488,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":84,"fiber_id":2552,"pid":84,"subject":"Async::Task","object_id":2560,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":189,"fiber_id":3512,"pid":189,"subject":"Async::Task","object_id":3520,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":183,"fiber_id":3160,"pid":183,"subject":"Async::Task","object_id":3168,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":171,"fiber_id":3016,"pid":171,"subject":"Async::Task","object_id":3024,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":102,"fiber_id":2744,"pid":102,"subject":"Async::Task","object_id":2752,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":9,"fiber_id":2104,"pid":9,"subject":"Async::Task","object_id":2112,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":165,"fiber_id":3368,"pid":165,"subject":"Async::Task","object_id":3376,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":42,"fiber_id":2184,"pid":42,"subject":"Async::Task","object_id":2192,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":123,"fiber_id":2824,"pid":123,"subject":"Async::Task","object_id":2832,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":90,"fiber_id":2568,"pid":90,"subject":"Async::Task","object_id":2576,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":144,"fiber_id":2696,"pid":144,"subject":"Async::Task","object_id":2704,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":111,"fiber_id":2840,"pid":111,"subject":"Async::Task","object_id":2848,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":150,"fiber_id":3032,"pid":150,"subject":"Async::Task","object_id":3040,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":156,"fiber_id":2920,"pid":156,"subject":"Async::Task","object_id":2928,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":90,"fiber_id":2584,"pid":90,"subject":"Async::Task","object_id":2592,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":174,"fiber_id":3400,"pid":174,"subject":"Async::Task","object_id":3408,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":39,"fiber_id":2440,"pid":39,"subject":"Async::Task","object_id":2448,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":117,"fiber_id":2968,"pid":117,"subject":"Async::Task","object_id":2976,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":123,"fiber_id":2840,"pid":123,"subject":"Async::Task","object_id":2848,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":81,"fiber_id":2472,"pid":81,"subject":"Async::Task","object_id":2480,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":168,"fiber_id":3160,"pid":168,"subject":"Async::Task","object_id":3168,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":114,"fiber_id":2856,"pid":114,"subject":"Async::Task","object_id":2864,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":45,"fiber_id":2136,"pid":45,"subject":"Async::Task","object_id":2144,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":183,"fiber_id":3176,"pid":183,"subject":"Async::Task","object_id":3184,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":57,"fiber_id":2600,"pid":57,"subject":"Async::Task","object_id":2608,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":54,"fiber_id":2472,"pid":54,"subject":"Async::Task","object_id":2480,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":156,"fiber_id":2936,"pid":156,"subject":"Async::Task","object_id":2944,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":198,"fiber_id":3496,"pid":198,"subject":"Async::Task","object_id":3504,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":162,"fiber_id":3208,"pid":162,"subject":"Async::Task","object_id":3216,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":93,"fiber_id":2744,"pid":93,"subject":"Async::Task","object_id":2752,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":102,"fiber_id":2760,"pid":102,"subject":"Async::Task","object_id":2768,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":117,"fiber_id":2984,"pid":117,"subject":"Async::Task","object_id":2992,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":36,"fiber_id":2360,"pid":36,"subject":"Async::Task","object_id":2368,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":159,"fiber_id":3128,"pid":159,"subject":"Async::Task","object_id":3136,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":147,"fiber_id":2952,"pid":147,"subject":"Async::Task","object_id":2960,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":9,"fiber_id":2120,"pid":9,"subject":"Async::Task","object_id":2128,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":12,"fiber_id":2232,"pid":12,"subject":"Async::Task","object_id":2240,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":141,"fiber_id":2968,"pid":141,"subject":"Async::Task","object_id":2976,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":111,"fiber_id":2856,"pid":111,"subject":"Async::Task","object_id":2864,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":81,"fiber_id":2488,"pid":81,"subject":"Async::Task","object_id":2496,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":21,"fiber_id":2040,"pid":21,"subject":"Async::Task","object_id":2048,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":90,"fiber_id":2600,"pid":90,"subject":"Async::Task","object_id":2608,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":33,"fiber_id":2440,"pid":33,"subject":"Async::Task","object_id":2448,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":39,"fiber_id":2456,"pid":39,"subject":"Async::Task","object_id":2464,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":171,"fiber_id":3032,"pid":171,"subject":"Async::Task","object_id":3040,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":150,"fiber_id":3048,"pid":150,"subject":"Async::Task","object_id":3056,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":72,"fiber_id":2424,"pid":72,"subject":"Async::Task","object_id":2432,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":111,"fiber_id":2872,"pid":111,"subject":"Async::Task","object_id":2880,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":36,"fiber_id":2376,"pid":36,"subject":"Async::Task","object_id":2384,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":159,"fiber_id":3144,"pid":159,"subject":"Async::Task","object_id":3152,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":180,"fiber_id":3448,"pid":180,"subject":"Async::Task","object_id":3456,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":192,"fiber_id":3384,"pid":192,"subject":"Async::Task","object_id":3392,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":72,"fiber_id":2440,"pid":72,"subject":"Async::Task","object_id":2448,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":195,"fiber_id":3592,"pid":195,"subject":"Async::Task","object_id":3600,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":57,"fiber_id":2616,"pid":57,"subject":"Async::Task","object_id":2624,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":12,"fiber_id":2248,"pid":12,"subject":"Async::Task","object_id":2256,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":162,"fiber_id":3224,"pid":162,"subject":"Async::Task","object_id":3232,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":45,"fiber_id":2152,"pid":45,"subject":"Async::Task","object_id":2160,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":90,"fiber_id":2616,"pid":90,"subject":"Async::Task","object_id":2624,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":156,"fiber_id":2952,"pid":156,"subject":"Async::Task","object_id":2960,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":15,"fiber_id":2264,"pid":15,"subject":"Async::Task","object_id":2272,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":51,"fiber_id":2168,"pid":51,"subject":"Async::Task","object_id":2176,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":81,"fiber_id":2504,"pid":81,"subject":"Async::Task","object_id":2512,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":150,"fiber_id":3064,"pid":150,"subject":"Async::Task","object_id":3072,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":162,"fiber_id":3240,"pid":162,"subject":"Async::Task","object_id":3248,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":60,"fiber_id":2472,"pid":60,"subject":"Async::Task","object_id":2480,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":90,"fiber_id":2632,"pid":90,"subject":"Async::Task","object_id":2640,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":180,"fiber_id":3464,"pid":180,"subject":"Async::Task","object_id":3472,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":138,"fiber_id":2600,"pid":138,"subject":"Async::Task","object_id":2608,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":99,"fiber_id":2808,"pid":99,"subject":"Async::Task","object_id":2816,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":57,"fiber_id":2632,"pid":57,"subject":"Async::Task","object_id":2640,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":159,"fiber_id":3160,"pid":159,"subject":"Async::Task","object_id":3168,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":42,"fiber_id":2200,"pid":42,"subject":"Async::Task","object_id":2208,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":30,"fiber_id":2312,"pid":30,"subject":"Async::Task","object_id":2320,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":111,"fiber_id":2888,"pid":111,"subject":"Async::Task","object_id":2896,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":183,"fiber_id":3192,"pid":183,"subject":"Async::Task","object_id":3200,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":90,"fiber_id":2648,"pid":90,"subject":"Async::Task","object_id":2656,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":30,"fiber_id":2328,"pid":30,"subject":"Async::Task","object_id":2336,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":93,"fiber_id":2760,"pid":93,"subject":"Async::Task","object_id":2768,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":126,"fiber_id":2680,"pid":126,"subject":"Async::Task","object_id":2688,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":30,"fiber_id":2344,"pid":30,"subject":"Async::Task","object_id":2352,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":33,"fiber_id":2456,"pid":33,"subject":"Async::Task","object_id":2464,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":78,"fiber_id":2568,"pid":78,"subject":"Async::Task","object_id":2576,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":186,"fiber_id":3416,"pid":186,"subject":"Async::Task","object_id":3424,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":132,"fiber_id":3352,"pid":132,"subject":"Async::Task","object_id":3360,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":117,"fiber_id":3000,"pid":117,"subject":"Async::Task","object_id":3008,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":60,"fiber_id":2488,"pid":60,"subject":"Async::Task","object_id":2496,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":159,"fiber_id":3176,"pid":159,"subject":"Async::Task","object_id":3184,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":18,"fiber_id":2328,"pid":18,"subject":"Async::Task","object_id":2336,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":177,"fiber_id":3656,"pid":177,"subject":"Async::Task","object_id":3664,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":192,"fiber_id":3400,"pid":192,"subject":"Async::Task","object_id":3408,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":30,"fiber_id":2360,"pid":30,"subject":"Async::Task","object_id":2368,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":24,"fiber_id":2328,"pid":24,"subject":"Async::Task","object_id":2336,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":120,"fiber_id":2968,"pid":120,"subject":"Async::Task","object_id":2976,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":111,"fiber_id":2904,"pid":111,"subject":"Async::Task","object_id":2912,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":180,"fiber_id":3480,"pid":180,"subject":"Async::Task","object_id":3488,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":54,"fiber_id":2488,"pid":54,"subject":"Async::Task","object_id":2496,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":63,"fiber_id":2376,"pid":63,"subject":"Async::Task","object_id":2384,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":156,"fiber_id":2968,"pid":156,"subject":"Async::Task","object_id":2976,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":123,"fiber_id":2856,"pid":123,"subject":"Async::Task","object_id":2864,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":153,"fiber_id":3160,"pid":153,"subject":"Async::Task","object_id":3168,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":75,"fiber_id":2376,"pid":75,"subject":"Async::Task","object_id":2384,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":120,"fiber_id":2984,"pid":120,"subject":"Async::Task","object_id":2992,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":30,"fiber_id":2376,"pid":30,"subject":"Async::Task","object_id":2384,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":156,"fiber_id":2984,"pid":156,"subject":"Async::Task","object_id":2992,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":162,"fiber_id":3256,"pid":162,"subject":"Async::Task","object_id":3264,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":132,"fiber_id":3368,"pid":132,"subject":"Async::Task","object_id":3376,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":159,"fiber_id":3192,"pid":159,"subject":"Async::Task","object_id":3200,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":63,"fiber_id":2392,"pid":63,"subject":"Async::Task","object_id":2400,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":120,"fiber_id":3000,"pid":120,"subject":"Async::Task","object_id":3008,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":183,"fiber_id":3208,"pid":183,"subject":"Async::Task","object_id":3216,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":102,"fiber_id":2776,"pid":102,"subject":"Async::Task","object_id":2784,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":195,"fiber_id":3608,"pid":195,"subject":"Async::Task","object_id":3616,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":192,"fiber_id":3416,"pid":192,"subject":"Async::Task","object_id":3424,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":90,"fiber_id":2664,"pid":90,"subject":"Async::Task","object_id":2672,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":186,"fiber_id":3432,"pid":186,"subject":"Async::Task","object_id":3440,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":12,"fiber_id":2264,"pid":12,"subject":"Async::Task","object_id":2272,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":72,"fiber_id":2456,"pid":72,"subject":"Async::Task","object_id":2464,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":189,"fiber_id":3528,"pid":189,"subject":"Async::Task","object_id":3536,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":153,"fiber_id":3176,"pid":153,"subject":"Async::Task","object_id":3184,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":12,"fiber_id":2280,"pid":12,"subject":"Async::Task","object_id":2288,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":135,"fiber_id":2808,"pid":135,"subject":"Async::Task","object_id":2816,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":36,"fiber_id":2392,"pid":36,"subject":"Async::Task","object_id":2400,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":150,"fiber_id":3080,"pid":150,"subject":"Async::Task","object_id":3088,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":192,"fiber_id":3432,"pid":192,"subject":"Async::Task","object_id":3440,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":126,"fiber_id":2696,"pid":126,"subject":"Async::Task","object_id":2704,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":132,"fiber_id":3384,"pid":132,"subject":"Async::Task","object_id":3392,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":93,"fiber_id":2776,"pid":93,"subject":"Async::Task","object_id":2784,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":162,"fiber_id":3272,"pid":162,"subject":"Async::Task","object_id":3280,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":126,"fiber_id":2712,"pid":126,"subject":"Async::Task","object_id":2720,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":15,"fiber_id":2280,"pid":15,"subject":"Async::Task","object_id":2288,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":165,"fiber_id":3384,"pid":165,"subject":"Async::Task","object_id":3392,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":147,"fiber_id":2968,"pid":147,"subject":"Async::Task","object_id":2976,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":150,"fiber_id":3096,"pid":150,"subject":"Async::Task","object_id":3104,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":45,"fiber_id":2168,"pid":45,"subject":"Async::Task","object_id":2176,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":24,"fiber_id":2344,"pid":24,"subject":"Async::Task","object_id":2352,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":39,"fiber_id":2472,"pid":39,"subject":"Async::Task","object_id":2480,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":186,"fiber_id":3448,"pid":186,"subject":"Async::Task","object_id":3456,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":162,"fiber_id":3288,"pid":162,"subject":"Async::Task","object_id":3296,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":99,"fiber_id":2824,"pid":99,"subject":"Async::Task","object_id":2832,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":33,"fiber_id":2472,"pid":33,"subject":"Async::Task","object_id":2480,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":132,"fiber_id":3400,"pid":132,"subject":"Async::Task","object_id":3408,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":171,"fiber_id":3048,"pid":171,"subject":"Async::Task","object_id":3056,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":12,"fiber_id":2296,"pid":12,"subject":"Async::Task","object_id":2304,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":102,"fiber_id":2792,"pid":102,"subject":"Async::Task","object_id":2800,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":15,"fiber_id":2296,"pid":15,"subject":"Async::Task","object_id":2304,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":195,"fiber_id":3624,"pid":195,"subject":"Async::Task","object_id":3632,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":162,"fiber_id":3304,"pid":162,"subject":"Async::Task","object_id":3312,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":135,"fiber_id":2824,"pid":135,"subject":"Async::Task","object_id":2832,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":93,"fiber_id":2792,"pid":93,"subject":"Async::Task","object_id":2800,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":108,"fiber_id":2616,"pid":108,"subject":"Async::Task","object_id":2624,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":36,"fiber_id":2408,"pid":36,"subject":"Async::Task","object_id":2416,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":126,"fiber_id":2728,"pid":126,"subject":"Async::Task","object_id":2736,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":138,"fiber_id":2616,"pid":138,"subject":"Async::Task","object_id":2624,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":27,"fiber_id":2008,"pid":27,"subject":"Async::Task","object_id":2016,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":144,"fiber_id":2712,"pid":144,"subject":"Async::Task","object_id":2720,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":114,"fiber_id":2872,"pid":114,"subject":"Async::Task","object_id":2880,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":177,"fiber_id":3672,"pid":177,"subject":"Async::Task","object_id":3680,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":159,"fiber_id":3208,"pid":159,"subject":"Async::Task","object_id":3216,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":36,"fiber_id":2424,"pid":36,"subject":"Async::Task","object_id":2432,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":189,"fiber_id":3544,"pid":189,"subject":"Async::Task","object_id":3552,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":9,"fiber_id":2136,"pid":9,"subject":"Async::Task","object_id":2144,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":48,"fiber_id":2392,"pid":48,"subject":"Async::Task","object_id":2400,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":72,"fiber_id":2472,"pid":72,"subject":"Async::Task","object_id":2480,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":15,"fiber_id":2312,"pid":15,"subject":"Async::Task","object_id":2320,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":141,"fiber_id":2984,"pid":141,"subject":"Async::Task","object_id":2992,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":180,"fiber_id":3496,"pid":180,"subject":"Async::Task","object_id":3504,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":39,"fiber_id":2488,"pid":39,"subject":"Async::Task","object_id":2496,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":9,"fiber_id":2152,"pid":9,"subject":"Async::Task","object_id":2160,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":189,"fiber_id":3560,"pid":189,"subject":"Async::Task","object_id":3568,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":30,"fiber_id":2392,"pid":30,"subject":"Async::Task","object_id":2400,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":120,"fiber_id":3016,"pid":120,"subject":"Async::Task","object_id":3024,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":60,"fiber_id":2504,"pid":60,"subject":"Async::Task","object_id":2512,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":93,"fiber_id":2808,"pid":93,"subject":"Async::Task","object_id":2816,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":141,"fiber_id":3000,"pid":141,"subject":"Async::Task","object_id":3008,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":153,"fiber_id":3192,"pid":153,"subject":"Async::Task","object_id":3200,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":27,"fiber_id":2024,"pid":27,"subject":"Async::Task","object_id":2032,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":174,"fiber_id":3416,"pid":174,"subject":"Async::Task","object_id":3424,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":120,"fiber_id":3032,"pid":120,"subject":"Async::Task","object_id":3040,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":189,"fiber_id":3576,"pid":189,"subject":"Async::Task","object_id":3584,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":69,"fiber_id":2264,"pid":69,"subject":"Async::Task","object_id":2272,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":36,"fiber_id":2440,"pid":36,"subject":"Async::Task","object_id":2448,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":81,"fiber_id":2520,"pid":81,"subject":"Async::Task","object_id":2528,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":174,"fiber_id":3432,"pid":174,"subject":"Async::Task","object_id":3440,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":63,"fiber_id":2408,"pid":63,"subject":"Async::Task","object_id":2416,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":24,"fiber_id":2360,"pid":24,"subject":"Async::Task","object_id":2368,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":126,"fiber_id":2744,"pid":126,"subject":"Async::Task","object_id":2752,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":138,"fiber_id":2632,"pid":138,"subject":"Async::Task","object_id":2640,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":180,"fiber_id":3512,"pid":180,"subject":"Async::Task","object_id":3520,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":171,"fiber_id":3064,"pid":171,"subject":"Async::Task","object_id":3072,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":141,"fiber_id":3016,"pid":141,"subject":"Async::Task","object_id":3024,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":15,"fiber_id":2328,"pid":15,"subject":"Async::Task","object_id":2336,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":114,"fiber_id":2888,"pid":114,"subject":"Async::Task","object_id":2896,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":192,"fiber_id":3448,"pid":192,"subject":"Async::Task","object_id":3456,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":21,"fiber_id":2056,"pid":21,"subject":"Async::Task","object_id":2064,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":60,"fiber_id":2520,"pid":60,"subject":"Async::Task","object_id":2528,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":144,"fiber_id":2728,"pid":144,"subject":"Async::Task","object_id":2736,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":162,"fiber_id":3320,"pid":162,"subject":"Async::Task","object_id":3328,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":102,"fiber_id":2808,"pid":102,"subject":"Async::Task","object_id":2816,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":126,"fiber_id":2760,"pid":126,"subject":"Async::Task","object_id":2768,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":45,"fiber_id":2184,"pid":45,"subject":"Async::Task","object_id":2192,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":15,"fiber_id":2344,"pid":15,"subject":"Async::Task","object_id":2352,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":39,"fiber_id":2504,"pid":39,"subject":"Async::Task","object_id":2512,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":147,"fiber_id":2984,"pid":147,"subject":"Async::Task","object_id":2992,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":171,"fiber_id":3080,"pid":171,"subject":"Async::Task","object_id":3088,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":57,"fiber_id":2648,"pid":57,"subject":"Async::Task","object_id":2656,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":141,"fiber_id":3032,"pid":141,"subject":"Async::Task","object_id":3040,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":12,"fiber_id":2312,"pid":12,"subject":"Async::Task","object_id":2320,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":48,"fiber_id":2408,"pid":48,"subject":"Async::Task","object_id":2416,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":120,"fiber_id":3048,"pid":120,"subject":"Async::Task","object_id":3056,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":21,"fiber_id":2072,"pid":21,"subject":"Async::Task","object_id":2080,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":192,"fiber_id":3464,"pid":192,"subject":"Async::Task","object_id":3472,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":63,"fiber_id":2424,"pid":63,"subject":"Async::Task","object_id":2432,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":87,"fiber_id":2664,"pid":87,"subject":"Async::Task","object_id":2672,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":180,"fiber_id":3528,"pid":180,"subject":"Async::Task","object_id":3536,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":150,"fiber_id":3112,"pid":150,"subject":"Async::Task","object_id":3120,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":12,"fiber_id":2328,"pid":12,"subject":"Async::Task","object_id":2336,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":99,"fiber_id":2840,"pid":99,"subject":"Async::Task","object_id":2848,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":114,"fiber_id":2904,"pid":114,"subject":"Async::Task","object_id":2912,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":198,"fiber_id":3512,"pid":198,"subject":"Async::Task","object_id":3520,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":21,"fiber_id":2088,"pid":21,"subject":"Async::Task","object_id":2096,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":162,"fiber_id":3336,"pid":162,"subject":"Async::Task","object_id":3344,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":45,"fiber_id":2200,"pid":45,"subject":"Async::Task","object_id":2208,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":144,"fiber_id":2744,"pid":144,"subject":"Async::Task","object_id":2752,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":12,"fiber_id":2344,"pid":12,"subject":"Async::Task","object_id":2352,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":63,"fiber_id":2440,"pid":63,"subject":"Async::Task","object_id":2448,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":147,"fiber_id":3000,"pid":147,"subject":"Async::Task","object_id":3008,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":180,"fiber_id":3544,"pid":180,"subject":"Async::Task","object_id":3552,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":111,"fiber_id":2920,"pid":111,"subject":"Async::Task","object_id":2928,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":165,"fiber_id":3400,"pid":165,"subject":"Async::Task","object_id":3408,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":195,"fiber_id":3640,"pid":195,"subject":"Async::Task","object_id":3648,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":147,"fiber_id":3016,"pid":147,"subject":"Async::Task","object_id":3024,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":198,"fiber_id":3528,"pid":198,"subject":"Async::Task","object_id":3536,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":30,"fiber_id":2408,"pid":30,"subject":"Async::Task","object_id":2416,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":189,"fiber_id":3592,"pid":189,"subject":"Async::Task","object_id":3600,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":132,"fiber_id":3416,"pid":132,"subject":"Async::Task","object_id":3424,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":171,"fiber_id":3096,"pid":171,"subject":"Async::Task","object_id":3104,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":105,"fiber_id":2776,"pid":105,"subject":"Async::Task","object_id":2784,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":120,"fiber_id":3064,"pid":120,"subject":"Async::Task","object_id":3072,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":183,"fiber_id":3224,"pid":183,"subject":"Async::Task","object_id":3232,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":48,"fiber_id":2424,"pid":48,"subject":"Async::Task","object_id":2432,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":168,"fiber_id":3176,"pid":168,"subject":"Async::Task","object_id":3184,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":189,"fiber_id":3608,"pid":189,"subject":"Async::Task","object_id":3616,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":153,"fiber_id":3208,"pid":153,"subject":"Async::Task","object_id":3216,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":12,"fiber_id":2360,"pid":12,"subject":"Async::Task","object_id":2368,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":108,"fiber_id":2632,"pid":108,"subject":"Async::Task","object_id":2640,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":156,"fiber_id":3000,"pid":156,"subject":"Async::Task","object_id":3008,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":96,"fiber_id":2712,"pid":96,"subject":"Async::Task","object_id":2720,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":66,"fiber_id":2408,"pid":66,"subject":"Async::Task","object_id":2416,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":15,"fiber_id":2360,"pid":15,"subject":"Async::Task","object_id":2368,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":45,"fiber_id":2216,"pid":45,"subject":"Async::Task","object_id":2224,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":111,"fiber_id":2936,"pid":111,"subject":"Async::Task","object_id":2944,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":39,"fiber_id":2520,"pid":39,"subject":"Async::Task","object_id":2528,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":198,"fiber_id":3544,"pid":198,"subject":"Async::Task","object_id":3552,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":69,"fiber_id":2280,"pid":69,"subject":"Async::Task","object_id":2288,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":21,"fiber_id":2104,"pid":21,"subject":"Async::Task","object_id":2112,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":105,"fiber_id":2792,"pid":105,"subject":"Async::Task","object_id":2800,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":126,"fiber_id":2776,"pid":126,"subject":"Async::Task","object_id":2784,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":51,"fiber_id":2184,"pid":51,"subject":"Async::Task","object_id":2192,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":69,"fiber_id":2296,"pid":69,"subject":"Async::Task","object_id":2304,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":75,"fiber_id":2392,"pid":75,"subject":"Async::Task","object_id":2400,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":156,"fiber_id":3016,"pid":156,"subject":"Async::Task","object_id":3024,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":168,"fiber_id":3192,"pid":168,"subject":"Async::Task","object_id":3200,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":12,"fiber_id":2376,"pid":12,"subject":"Async::Task","object_id":2384,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":39,"fiber_id":2536,"pid":39,"subject":"Async::Task","object_id":2544,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":36,"fiber_id":2456,"pid":36,"subject":"Async::Task","object_id":2464,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":27,"fiber_id":2040,"pid":27,"subject":"Async::Task","object_id":2048,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":114,"fiber_id":2920,"pid":114,"subject":"Async::Task","object_id":2928,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":165,"fiber_id":3416,"pid":165,"subject":"Async::Task","object_id":3424,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":18,"fiber_id":2344,"pid":18,"subject":"Async::Task","object_id":2352,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":126,"fiber_id":2792,"pid":126,"subject":"Async::Task","object_id":2800,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":162,"fiber_id":3352,"pid":162,"subject":"Async::Task","object_id":3360,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":147,"fiber_id":3032,"pid":147,"subject":"Async::Task","object_id":3040,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":156,"fiber_id":3032,"pid":156,"subject":"Async::Task","object_id":3040,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":183,"fiber_id":3240,"pid":183,"subject":"Async::Task","object_id":3248,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":15,"fiber_id":2376,"pid":15,"subject":"Async::Task","object_id":2384,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":114,"fiber_id":2936,"pid":114,"subject":"Async::Task","object_id":2944,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":87,"fiber_id":2680,"pid":87,"subject":"Async::Task","object_id":2688,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":51,"fiber_id":2200,"pid":51,"subject":"Async::Task","object_id":2208,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":108,"fiber_id":2648,"pid":108,"subject":"Async::Task","object_id":2656,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":153,"fiber_id":3224,"pid":153,"subject":"Async::Task","object_id":3232,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":126,"fiber_id":2808,"pid":126,"subject":"Async::Task","object_id":2816,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":102,"fiber_id":2824,"pid":102,"subject":"Async::Task","object_id":2832,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":195,"fiber_id":3656,"pid":195,"subject":"Async::Task","object_id":3664,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":15,"fiber_id":2392,"pid":15,"subject":"Async::Task","object_id":2400,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":45,"fiber_id":2232,"pid":45,"subject":"Async::Task","object_id":2240,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":117,"fiber_id":3016,"pid":117,"subject":"Async::Task","object_id":3024,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":27,"fiber_id":2056,"pid":27,"subject":"Async::Task","object_id":2064,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":162,"fiber_id":3368,"pid":162,"subject":"Async::Task","object_id":3376,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":81,"fiber_id":2536,"pid":81,"subject":"Async::Task","object_id":2544,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":21,"fiber_id":2120,"pid":21,"subject":"Async::Task","object_id":2128,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":45,"fiber_id":2248,"pid":45,"subject":"Async::Task","object_id":2256,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":99,"fiber_id":2856,"pid":99,"subject":"Async::Task","object_id":2864,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":114,"fiber_id":2952,"pid":114,"subject":"Async::Task","object_id":2960,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":15,"fiber_id":2408,"pid":15,"subject":"Async::Task","object_id":2416,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":150,"fiber_id":3128,"pid":150,"subject":"Async::Task","object_id":3136,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":18,"fiber_id":2360,"pid":18,"subject":"Async::Task","object_id":2368,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":9,"fiber_id":2168,"pid":9,"subject":"Async::Task","object_id":2176,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":117,"fiber_id":3032,"pid":117,"subject":"Async::Task","object_id":3040,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":168,"fiber_id":3208,"pid":168,"subject":"Async::Task","object_id":3216,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":93,"fiber_id":2824,"pid":93,"subject":"Async::Task","object_id":2832,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":27,"fiber_id":2072,"pid":27,"subject":"Async::Task","object_id":2080,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":12,"fiber_id":2392,"pid":12,"subject":"Async::Task","object_id":2400,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":168,"fiber_id":3224,"pid":168,"subject":"Async::Task","object_id":3232,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":150,"fiber_id":3144,"pid":150,"subject":"Async::Task","object_id":3152,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":99,"fiber_id":2872,"pid":99,"subject":"Async::Task","object_id":2880,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":114,"fiber_id":2968,"pid":114,"subject":"Async::Task","object_id":2976,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":195,"fiber_id":3672,"pid":195,"subject":"Async::Task","object_id":3680,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":78,"fiber_id":2584,"pid":78,"subject":"Async::Task","object_id":2592,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":54,"fiber_id":2504,"pid":54,"subject":"Async::Task","object_id":2512,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":96,"fiber_id":2728,"pid":96,"subject":"Async::Task","object_id":2736,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":60,"fiber_id":2536,"pid":60,"subject":"Async::Task","object_id":2544,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":9,"fiber_id":2184,"pid":9,"subject":"Async::Task","object_id":2192,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":15,"fiber_id":2424,"pid":15,"subject":"Async::Task","object_id":2432,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":132,"fiber_id":3432,"pid":132,"subject":"Async::Task","object_id":3440,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":21,"fiber_id":2136,"pid":21,"subject":"Async::Task","object_id":2144,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":78,"fiber_id":2600,"pid":78,"subject":"Async::Task","object_id":2608,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":159,"fiber_id":3224,"pid":159,"subject":"Async::Task","object_id":3232,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":81,"fiber_id":2552,"pid":81,"subject":"Async::Task","object_id":2560,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":153,"fiber_id":3240,"pid":153,"subject":"Async::Task","object_id":3248,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":168,"fiber_id":3240,"pid":168,"subject":"Async::Task","object_id":3248,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":105,"fiber_id":2808,"pid":105,"subject":"Async::Task","object_id":2816,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":78,"fiber_id":2616,"pid":78,"subject":"Async::Task","object_id":2624,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":168,"fiber_id":3256,"pid":168,"subject":"Async::Task","object_id":3264,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":102,"fiber_id":2840,"pid":102,"subject":"Async::Task","object_id":2848,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":72,"fiber_id":2488,"pid":72,"subject":"Async::Task","object_id":2496,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":126,"fiber_id":2824,"pid":126,"subject":"Async::Task","object_id":2832,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":195,"fiber_id":3688,"pid":195,"subject":"Async::Task","object_id":3696,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":111,"fiber_id":2952,"pid":111,"subject":"Async::Task","object_id":2960,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":117,"fiber_id":3048,"pid":117,"subject":"Async::Task","object_id":3056,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":45,"fiber_id":2264,"pid":45,"subject":"Async::Task","object_id":2272,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":90,"fiber_id":2680,"pid":90,"subject":"Async::Task","object_id":2688,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":63,"fiber_id":2456,"pid":63,"subject":"Async::Task","object_id":2464,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":69,"fiber_id":2312,"pid":69,"subject":"Async::Task","object_id":2320,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":153,"fiber_id":3256,"pid":153,"subject":"Async::Task","object_id":3264,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":126,"fiber_id":2840,"pid":126,"subject":"Async::Task","object_id":2848,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":114,"fiber_id":2984,"pid":114,"subject":"Async::Task","object_id":2992,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":27,"fiber_id":2088,"pid":27,"subject":"Async::Task","object_id":2096,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":18,"fiber_id":2376,"pid":18,"subject":"Async::Task","object_id":2384,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":60,"fiber_id":2552,"pid":60,"subject":"Async::Task","object_id":2560,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":15,"fiber_id":2440,"pid":15,"subject":"Async::Task","object_id":2448,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":144,"fiber_id":2760,"pid":144,"subject":"Async::Task","object_id":2768,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":105,"fiber_id":2824,"pid":105,"subject":"Async::Task","object_id":2832,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":54,"fiber_id":2520,"pid":54,"subject":"Async::Task","object_id":2528,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":141,"fiber_id":3048,"pid":141,"subject":"Async::Task","object_id":3056,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":33,"fiber_id":2488,"pid":33,"subject":"Async::Task","object_id":2496,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":171,"fiber_id":3112,"pid":171,"subject":"Async::Task","object_id":3120,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":126,"fiber_id":2856,"pid":126,"subject":"Async::Task","object_id":2864,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":81,"fiber_id":2568,"pid":81,"subject":"Async::Task","object_id":2576,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":117,"fiber_id":3064,"pid":117,"subject":"Async::Task","object_id":3072,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":27,"fiber_id":2104,"pid":27,"subject":"Async::Task","object_id":2112,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":132,"fiber_id":3448,"pid":132,"subject":"Async::Task","object_id":3456,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":180,"fiber_id":3560,"pid":180,"subject":"Async::Task","object_id":3568,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":159,"fiber_id":3240,"pid":159,"subject":"Async::Task","object_id":3248,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":126,"fiber_id":2872,"pid":126,"subject":"Async::Task","object_id":2880,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":168,"fiber_id":3272,"pid":168,"subject":"Async::Task","object_id":3280,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":177,"fiber_id":3688,"pid":177,"subject":"Async::Task","object_id":3696,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":90,"fiber_id":2696,"pid":90,"subject":"Async::Task","object_id":2704,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":39,"fiber_id":2552,"pid":39,"subject":"Async::Task","object_id":2560,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":114,"fiber_id":3000,"pid":114,"subject":"Async::Task","object_id":3008,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":42,"fiber_id":2216,"pid":42,"subject":"Async::Task","object_id":2224,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":75,"fiber_id":2408,"pid":75,"subject":"Async::Task","object_id":2416,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":186,"fiber_id":3464,"pid":186,"subject":"Async::Task","object_id":3472,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":18,"fiber_id":2392,"pid":18,"subject":"Async::Task","object_id":2400,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":147,"fiber_id":3048,"pid":147,"subject":"Async::Task","object_id":3056,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":162,"fiber_id":3384,"pid":162,"subject":"Async::Task","object_id":3392,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":141,"fiber_id":3064,"pid":141,"subject":"Async::Task","object_id":3072,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":30,"fiber_id":2424,"pid":30,"subject":"Async::Task","object_id":2432,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":45,"fiber_id":2280,"pid":45,"subject":"Async::Task","object_id":2288,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":186,"fiber_id":3480,"pid":186,"subject":"Async::Task","object_id":3488,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":147,"fiber_id":3064,"pid":147,"subject":"Async::Task","object_id":3072,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":12,"fiber_id":2408,"pid":12,"subject":"Async::Task","object_id":2416,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":39,"fiber_id":2568,"pid":39,"subject":"Async::Task","object_id":2576,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":72,"fiber_id":2504,"pid":72,"subject":"Async::Task","object_id":2512,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":192,"fiber_id":3480,"pid":192,"subject":"Async::Task","object_id":3488,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":96,"fiber_id":2744,"pid":96,"subject":"Async::Task","object_id":2752,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":114,"fiber_id":3016,"pid":114,"subject":"Async::Task","object_id":3024,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":156,"fiber_id":3048,"pid":156,"subject":"Async::Task","object_id":3056,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":138,"fiber_id":2648,"pid":138,"subject":"Async::Task","object_id":2656,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":165,"fiber_id":3432,"pid":165,"subject":"Async::Task","object_id":3440,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":21,"fiber_id":2152,"pid":21,"subject":"Async::Task","object_id":2160,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":198,"fiber_id":3560,"pid":198,"subject":"Async::Task","object_id":3568,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":102,"fiber_id":2856,"pid":102,"subject":"Async::Task","object_id":2864,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":33,"fiber_id":2504,"pid":33,"subject":"Async::Task","object_id":2512,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":180,"fiber_id":3576,"pid":180,"subject":"Async::Task","object_id":3584,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":45,"fiber_id":2296,"pid":45,"subject":"Async::Task","object_id":2304,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":165,"fiber_id":3448,"pid":165,"subject":"Async::Task","object_id":3456,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":51,"fiber_id":2216,"pid":51,"subject":"Async::Task","object_id":2224,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":135,"fiber_id":2840,"pid":135,"subject":"Async::Task","object_id":2848,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":63,"fiber_id":2472,"pid":63,"subject":"Async::Task","object_id":2480,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":165,"fiber_id":3464,"pid":165,"subject":"Async::Task","object_id":3472,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":111,"fiber_id":2968,"pid":111,"subject":"Async::Task","object_id":2976,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":51,"fiber_id":2232,"pid":51,"subject":"Async::Task","object_id":2240,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":69,"fiber_id":2328,"pid":69,"subject":"Async::Task","object_id":2336,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":135,"fiber_id":2856,"pid":135,"subject":"Async::Task","object_id":2864,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":108,"fiber_id":2664,"pid":108,"subject":"Async::Task","object_id":2672,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":198,"fiber_id":3576,"pid":198,"subject":"Async::Task","object_id":3584,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":57,"fiber_id":2664,"pid":57,"subject":"Async::Task","object_id":2672,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":120,"fiber_id":3080,"pid":120,"subject":"Async::Task","object_id":3088,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":63,"fiber_id":2488,"pid":63,"subject":"Async::Task","object_id":2496,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":54,"fiber_id":2536,"pid":54,"subject":"Async::Task","object_id":2544,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":183,"fiber_id":3256,"pid":183,"subject":"Async::Task","object_id":3264,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":111,"fiber_id":2984,"pid":111,"subject":"Async::Task","object_id":2992,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":192,"fiber_id":3496,"pid":192,"subject":"Async::Task","object_id":3504,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":33,"fiber_id":2520,"pid":33,"subject":"Async::Task","object_id":2528,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":183,"fiber_id":3272,"pid":183,"subject":"Async::Task","object_id":3280,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":69,"fiber_id":2344,"pid":69,"subject":"Async::Task","object_id":2352,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":144,"fiber_id":2776,"pid":144,"subject":"Async::Task","object_id":2784,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":105,"fiber_id":2840,"pid":105,"subject":"Async::Task","object_id":2848,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":138,"fiber_id":2664,"pid":138,"subject":"Async::Task","object_id":2672,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":192,"fiber_id":3512,"pid":192,"subject":"Async::Task","object_id":3520,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":198,"fiber_id":3592,"pid":198,"subject":"Async::Task","object_id":3600,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":72,"fiber_id":2520,"pid":72,"subject":"Async::Task","object_id":2528,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":39,"fiber_id":2584,"pid":39,"subject":"Async::Task","object_id":2592,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":153,"fiber_id":3272,"pid":153,"subject":"Async::Task","object_id":3280,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":165,"fiber_id":3480,"pid":165,"subject":"Async::Task","object_id":3488,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":36,"fiber_id":2472,"pid":36,"subject":"Async::Task","object_id":2480,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":75,"fiber_id":2424,"pid":75,"subject":"Async::Task","object_id":2432,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":156,"fiber_id":3064,"pid":156,"subject":"Async::Task","object_id":3072,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":96,"fiber_id":2760,"pid":96,"subject":"Async::Task","object_id":2768,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":93,"fiber_id":2840,"pid":93,"subject":"Async::Task","object_id":2848,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":15,"fiber_id":2456,"pid":15,"subject":"Async::Task","object_id":2464,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":57,"fiber_id":2680,"pid":57,"subject":"Async::Task","object_id":2688,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":9,"fiber_id":2200,"pid":9,"subject":"Async::Task","object_id":2208,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":69,"fiber_id":2360,"pid":69,"subject":"Async::Task","object_id":2368,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":132,"fiber_id":3464,"pid":132,"subject":"Async::Task","object_id":3472,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":99,"fiber_id":2888,"pid":99,"subject":"Async::Task","object_id":2896,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":51,"fiber_id":2248,"pid":51,"subject":"Async::Task","object_id":2256,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":180,"fiber_id":3592,"pid":180,"subject":"Async::Task","object_id":3600,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":141,"fiber_id":3080,"pid":141,"subject":"Async::Task","object_id":3088,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":192,"fiber_id":3528,"pid":192,"subject":"Async::Task","object_id":3536,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":72,"fiber_id":2536,"pid":72,"subject":"Async::Task","object_id":2544,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":15,"fiber_id":2472,"pid":15,"subject":"Async::Task","object_id":2480,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":126,"fiber_id":2888,"pid":126,"subject":"Async::Task","object_id":2896,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":120,"fiber_id":3096,"pid":120,"subject":"Async::Task","object_id":3104,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":87,"fiber_id":2696,"pid":87,"subject":"Async::Task","object_id":2704,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":21,"fiber_id":2168,"pid":21,"subject":"Async::Task","object_id":2176,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":171,"fiber_id":3128,"pid":171,"subject":"Async::Task","object_id":3136,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":144,"fiber_id":2792,"pid":144,"subject":"Async::Task","object_id":2800,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":90,"fiber_id":2712,"pid":90,"subject":"Async::Task","object_id":2720,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":108,"fiber_id":2680,"pid":108,"subject":"Async::Task","object_id":2688,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":48,"fiber_id":2440,"pid":48,"subject":"Async::Task","object_id":2448,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":63,"fiber_id":2504,"pid":63,"subject":"Async::Task","object_id":2512,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":105,"fiber_id":2856,"pid":105,"subject":"Async::Task","object_id":2864,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":171,"fiber_id":3144,"pid":171,"subject":"Async::Task","object_id":3152,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":108,"fiber_id":2696,"pid":108,"subject":"Async::Task","object_id":2704,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":81,"fiber_id":2584,"pid":81,"subject":"Async::Task","object_id":2592,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":147,"fiber_id":3080,"pid":147,"subject":"Async::Task","object_id":3088,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":171,"fiber_id":3160,"pid":171,"subject":"Async::Task","object_id":3168,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":141,"fiber_id":3096,"pid":141,"subject":"Async::Task","object_id":3104,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":78,"fiber_id":2632,"pid":78,"subject":"Async::Task","object_id":2640,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":48,"fiber_id":2456,"pid":48,"subject":"Async::Task","object_id":2464,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":87,"fiber_id":2712,"pid":87,"subject":"Async::Task","object_id":2720,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":165,"fiber_id":3496,"pid":165,"subject":"Async::Task","object_id":3504,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":99,"fiber_id":2904,"pid":99,"subject":"Async::Task","object_id":2912,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":90,"fiber_id":2728,"pid":90,"subject":"Async::Task","object_id":2736,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":33,"fiber_id":2536,"pid":33,"subject":"Async::Task","object_id":2544,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":81,"fiber_id":2600,"pid":81,"subject":"Async::Task","object_id":2608,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":72,"fiber_id":2552,"pid":72,"subject":"Async::Task","object_id":2560,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":120,"fiber_id":3112,"pid":120,"subject":"Async::Task","object_id":3120,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":87,"fiber_id":2728,"pid":87,"subject":"Async::Task","object_id":2736,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":174,"fiber_id":3448,"pid":174,"subject":"Async::Task","object_id":3456,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":24,"fiber_id":2376,"pid":24,"subject":"Async::Task","object_id":2384,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":186,"fiber_id":3496,"pid":186,"subject":"Async::Task","object_id":3504,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":138,"fiber_id":2680,"pid":138,"subject":"Async::Task","object_id":2688,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":165,"fiber_id":3512,"pid":165,"subject":"Async::Task","object_id":3520,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":18,"fiber_id":2408,"pid":18,"subject":"Async::Task","object_id":2416,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":60,"fiber_id":2568,"pid":60,"subject":"Async::Task","object_id":2576,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":48,"fiber_id":2472,"pid":48,"subject":"Async::Task","object_id":2480,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":132,"fiber_id":3480,"pid":132,"subject":"Async::Task","object_id":3488,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":42,"fiber_id":2232,"pid":42,"subject":"Async::Task","object_id":2240,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":105,"fiber_id":2872,"pid":105,"subject":"Async::Task","object_id":2880,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":78,"fiber_id":2648,"pid":78,"subject":"Async::Task","object_id":2656,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":192,"fiber_id":3544,"pid":192,"subject":"Async::Task","object_id":3552,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":102,"fiber_id":2872,"pid":102,"subject":"Async::Task","object_id":2880,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":57,"fiber_id":2696,"pid":57,"subject":"Async::Task","object_id":2704,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":162,"fiber_id":3400,"pid":162,"subject":"Async::Task","object_id":3408,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":81,"fiber_id":2616,"pid":81,"subject":"Async::Task","object_id":2624,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":45,"fiber_id":2312,"pid":45,"subject":"Async::Task","object_id":2320,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":168,"fiber_id":3288,"pid":168,"subject":"Async::Task","object_id":3296,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":12,"fiber_id":2424,"pid":12,"subject":"Async::Task","object_id":2432,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":66,"fiber_id":2424,"pid":66,"subject":"Async::Task","object_id":2432,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":120,"fiber_id":3128,"pid":120,"subject":"Async::Task","object_id":3136,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":126,"fiber_id":2904,"pid":126,"subject":"Async::Task","object_id":2912,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":81,"fiber_id":2632,"pid":81,"subject":"Async::Task","object_id":2640,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":141,"fiber_id":3112,"pid":141,"subject":"Async::Task","object_id":3120,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":144,"fiber_id":2808,"pid":144,"subject":"Async::Task","object_id":2816,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":54,"fiber_id":2552,"pid":54,"subject":"Async::Task","object_id":2560,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":30,"fiber_id":2440,"pid":30,"subject":"Async::Task","object_id":2448,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":108,"fiber_id":2712,"pid":108,"subject":"Async::Task","object_id":2720,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":177,"fiber_id":3704,"pid":177,"subject":"Async::Task","object_id":3712,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":141,"fiber_id":3128,"pid":141,"subject":"Async::Task","object_id":3136,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":120,"fiber_id":3144,"pid":120,"subject":"Async::Task","object_id":3152,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":72,"fiber_id":2568,"pid":72,"subject":"Async::Task","object_id":2576,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":156,"fiber_id":3080,"pid":156,"subject":"Async::Task","object_id":3088,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":120,"fiber_id":3160,"pid":120,"subject":"Async::Task","object_id":3168,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":96,"fiber_id":2776,"pid":96,"subject":"Async::Task","object_id":2784,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":12,"fiber_id":2440,"pid":12,"subject":"Async::Task","object_id":2448,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":114,"fiber_id":3032,"pid":114,"subject":"Async::Task","object_id":3040,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":90,"fiber_id":2744,"pid":90,"subject":"Async::Task","object_id":2752,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":51,"fiber_id":2264,"pid":51,"subject":"Async::Task","object_id":2272,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":24,"fiber_id":2392,"pid":24,"subject":"Async::Task","object_id":2400,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":117,"fiber_id":3080,"pid":117,"subject":"Async::Task","object_id":3088,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":168,"fiber_id":3304,"pid":168,"subject":"Async::Task","object_id":3312,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":108,"fiber_id":2728,"pid":108,"subject":"Async::Task","object_id":2736,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":66,"fiber_id":2440,"pid":66,"subject":"Async::Task","object_id":2448,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":186,"fiber_id":3512,"pid":186,"subject":"Async::Task","object_id":3520,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":153,"fiber_id":3288,"pid":153,"subject":"Async::Task","object_id":3296,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":30,"fiber_id":2456,"pid":30,"subject":"Async::Task","object_id":2464,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":165,"fiber_id":3528,"pid":165,"subject":"Async::Task","object_id":3536,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":33,"fiber_id":2552,"pid":33,"subject":"Async::Task","object_id":2560,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":18,"fiber_id":2424,"pid":18,"subject":"Async::Task","object_id":2432,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":75,"fiber_id":2440,"pid":75,"subject":"Async::Task","object_id":2448,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":120,"fiber_id":3176,"pid":120,"subject":"Async::Task","object_id":3184,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":90,"fiber_id":2760,"pid":90,"subject":"Async::Task","object_id":2768,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":21,"fiber_id":2184,"pid":21,"subject":"Async::Task","object_id":2192,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":66,"fiber_id":2456,"pid":66,"subject":"Async::Task","object_id":2464,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":138,"fiber_id":2696,"pid":138,"subject":"Async::Task","object_id":2704,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":48,"fiber_id":2488,"pid":48,"subject":"Async::Task","object_id":2496,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":192,"fiber_id":3560,"pid":192,"subject":"Async::Task","object_id":3568,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":117,"fiber_id":3096,"pid":117,"subject":"Async::Task","object_id":3104,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":78,"fiber_id":2664,"pid":78,"subject":"Async::Task","object_id":2672,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":171,"fiber_id":3176,"pid":171,"subject":"Async::Task","object_id":3184,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":27,"fiber_id":2120,"pid":27,"subject":"Async::Task","object_id":2128,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":75,"fiber_id":2456,"pid":75,"subject":"Async::Task","object_id":2464,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":15,"fiber_id":2488,"pid":15,"subject":"Async::Task","object_id":2496,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":69,"fiber_id":2376,"pid":69,"subject":"Async::Task","object_id":2384,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":198,"fiber_id":3608,"pid":198,"subject":"Async::Task","object_id":3616,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":9,"fiber_id":2216,"pid":9,"subject":"Async::Task","object_id":2224,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":93,"fiber_id":2856,"pid":93,"subject":"Async::Task","object_id":2864,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":141,"fiber_id":3144,"pid":141,"subject":"Async::Task","object_id":3152,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":33,"fiber_id":2568,"pid":33,"subject":"Async::Task","object_id":2576,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":63,"fiber_id":2520,"pid":63,"subject":"Async::Task","object_id":2528,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":114,"fiber_id":3048,"pid":114,"subject":"Async::Task","object_id":3056,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":105,"fiber_id":2888,"pid":105,"subject":"Async::Task","object_id":2896,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":138,"fiber_id":2712,"pid":138,"subject":"Async::Task","object_id":2720,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":165,"fiber_id":3544,"pid":165,"subject":"Async::Task","object_id":3552,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":105,"fiber_id":2904,"pid":105,"subject":"Async::Task","object_id":2912,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":87,"fiber_id":2744,"pid":87,"subject":"Async::Task","object_id":2752,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":168,"fiber_id":3320,"pid":168,"subject":"Async::Task","object_id":3328,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":24,"fiber_id":2408,"pid":24,"subject":"Async::Task","object_id":2416,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":57,"fiber_id":2712,"pid":57,"subject":"Async::Task","object_id":2720,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":72,"fiber_id":2584,"pid":72,"subject":"Async::Task","object_id":2592,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":183,"fiber_id":3288,"pid":183,"subject":"Async::Task","object_id":3296,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":24,"fiber_id":2424,"pid":24,"subject":"Async::Task","object_id":2432,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":30,"fiber_id":2472,"pid":30,"subject":"Async::Task","object_id":2480,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":48,"fiber_id":2504,"pid":48,"subject":"Async::Task","object_id":2512,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":15,"fiber_id":2504,"pid":15,"subject":"Async::Task","object_id":2512,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":138,"fiber_id":2728,"pid":138,"subject":"Async::Task","object_id":2736,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":57,"fiber_id":2728,"pid":57,"subject":"Async::Task","object_id":2736,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":69,"fiber_id":2392,"pid":69,"subject":"Async::Task","object_id":2400,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":105,"fiber_id":2920,"pid":105,"subject":"Async::Task","object_id":2928,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":93,"fiber_id":2872,"pid":93,"subject":"Async::Task","object_id":2880,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":75,"fiber_id":2472,"pid":75,"subject":"Async::Task","object_id":2480,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":9,"fiber_id":2232,"pid":9,"subject":"Async::Task","object_id":2240,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":30,"fiber_id":2488,"pid":30,"subject":"Async::Task","object_id":2496,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":165,"fiber_id":3560,"pid":165,"subject":"Async::Task","object_id":3568,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":57,"fiber_id":2744,"pid":57,"subject":"Async::Task","object_id":2752,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":180,"fiber_id":3608,"pid":180,"subject":"Async::Task","object_id":3616,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":48,"fiber_id":2520,"pid":48,"subject":"Async::Task","object_id":2528,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":27,"fiber_id":2136,"pid":27,"subject":"Async::Task","object_id":2144,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":141,"fiber_id":3160,"pid":141,"subject":"Async::Task","object_id":3168,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":9,"fiber_id":2248,"pid":9,"subject":"Async::Task","object_id":2256,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":168,"fiber_id":3336,"pid":168,"subject":"Async::Task","object_id":3344,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":99,"fiber_id":2920,"pid":99,"subject":"Async::Task","object_id":2928,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":120,"fiber_id":3192,"pid":120,"subject":"Async::Task","object_id":3200,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":189,"fiber_id":3624,"pid":189,"subject":"Async::Task","object_id":3632,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":105,"fiber_id":2936,"pid":105,"subject":"Async::Task","object_id":2944,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":63,"fiber_id":2536,"pid":63,"subject":"Async::Task","object_id":2544,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":93,"fiber_id":2888,"pid":93,"subject":"Async::Task","object_id":2896,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":114,"fiber_id":3064,"pid":114,"subject":"Async::Task","object_id":3072,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":81,"fiber_id":2648,"pid":81,"subject":"Async::Task","object_id":2656,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":99,"fiber_id":2936,"pid":99,"subject":"Async::Task","object_id":2944,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":195,"fiber_id":3704,"pid":195,"subject":"Async::Task","object_id":3712,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":120,"fiber_id":3208,"pid":120,"subject":"Async::Task","object_id":3216,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":159,"fiber_id":3256,"pid":159,"subject":"Async::Task","object_id":3264,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":126,"fiber_id":2920,"pid":126,"subject":"Async::Task","object_id":2928,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":99,"fiber_id":2952,"pid":99,"subject":"Async::Task","object_id":2960,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":87,"fiber_id":2760,"pid":87,"subject":"Async::Task","object_id":2768,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":186,"fiber_id":3528,"pid":186,"subject":"Async::Task","object_id":3536,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":195,"fiber_id":3720,"pid":195,"subject":"Async::Task","object_id":3728,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":9,"fiber_id":2264,"pid":9,"subject":"Async::Task","object_id":2272,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":21,"fiber_id":2200,"pid":21,"subject":"Async::Task","object_id":2208,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":123,"fiber_id":2872,"pid":123,"subject":"Async::Task","object_id":2880,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":141,"fiber_id":3176,"pid":141,"subject":"Async::Task","object_id":3184,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":93,"fiber_id":2904,"pid":93,"subject":"Async::Task","object_id":2912,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":63,"fiber_id":2552,"pid":63,"subject":"Async::Task","object_id":2560,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":144,"fiber_id":2824,"pid":144,"subject":"Async::Task","object_id":2832,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":57,"fiber_id":2760,"pid":57,"subject":"Async::Task","object_id":2768,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":108,"fiber_id":2744,"pid":108,"subject":"Async::Task","object_id":2752,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":33,"fiber_id":2584,"pid":33,"subject":"Async::Task","object_id":2592,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":60,"fiber_id":2584,"pid":60,"subject":"Async::Task","object_id":2592,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":12,"fiber_id":2456,"pid":12,"subject":"Async::Task","object_id":2464,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":120,"fiber_id":3224,"pid":120,"subject":"Async::Task","object_id":3232,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":198,"fiber_id":3624,"pid":198,"subject":"Async::Task","object_id":3632,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":30,"fiber_id":2504,"pid":30,"subject":"Async::Task","object_id":2512,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":60,"fiber_id":2600,"pid":60,"subject":"Async::Task","object_id":2608,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":27,"fiber_id":2152,"pid":27,"subject":"Async::Task","object_id":2160,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":138,"fiber_id":2744,"pid":138,"subject":"Async::Task","object_id":2752,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":99,"fiber_id":2968,"pid":99,"subject":"Async::Task","object_id":2976,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":198,"fiber_id":3640,"pid":198,"subject":"Async::Task","object_id":3648,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":159,"fiber_id":3272,"pid":159,"subject":"Async::Task","object_id":3280,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":144,"fiber_id":2840,"pid":144,"subject":"Async::Task","object_id":2848,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":168,"fiber_id":3352,"pid":168,"subject":"Async::Task","object_id":3360,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":51,"fiber_id":2280,"pid":51,"subject":"Async::Task","object_id":2288,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":108,"fiber_id":2760,"pid":108,"subject":"Async::Task","object_id":2768,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":165,"fiber_id":3576,"pid":165,"subject":"Async::Task","object_id":3584,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":27,"fiber_id":2168,"pid":27,"subject":"Async::Task","object_id":2176,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":87,"fiber_id":2776,"pid":87,"subject":"Async::Task","object_id":2784,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":78,"fiber_id":2680,"pid":78,"subject":"Async::Task","object_id":2688,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":21,"fiber_id":2216,"pid":21,"subject":"Async::Task","object_id":2224,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":108,"fiber_id":2776,"pid":108,"subject":"Async::Task","object_id":2784,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":60,"fiber_id":2616,"pid":60,"subject":"Async::Task","object_id":2624,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":165,"fiber_id":3592,"pid":165,"subject":"Async::Task","object_id":3600,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":111,"fiber_id":3000,"pid":111,"subject":"Async::Task","object_id":3008,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":12,"fiber_id":2472,"pid":12,"subject":"Async::Task","object_id":2480,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":102,"fiber_id":2888,"pid":102,"subject":"Async::Task","object_id":2896,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":138,"fiber_id":2760,"pid":138,"subject":"Async::Task","object_id":2768,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":183,"fiber_id":3304,"pid":183,"subject":"Async::Task","object_id":3312,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":117,"fiber_id":3112,"pid":117,"subject":"Async::Task","object_id":3120,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":48,"fiber_id":2536,"pid":48,"subject":"Async::Task","object_id":2544,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":168,"fiber_id":3368,"pid":168,"subject":"Async::Task","object_id":3376,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":120,"fiber_id":3240,"pid":120,"subject":"Async::Task","object_id":3248,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":15,"fiber_id":2520,"pid":15,"subject":"Async::Task","object_id":2528,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":57,"fiber_id":2776,"pid":57,"subject":"Async::Task","object_id":2784,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":60,"fiber_id":2632,"pid":60,"subject":"Async::Task","object_id":2640,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":69,"fiber_id":2408,"pid":69,"subject":"Async::Task","object_id":2416,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":75,"fiber_id":2488,"pid":75,"subject":"Async::Task","object_id":2496,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":66,"fiber_id":2472,"pid":66,"subject":"Async::Task","object_id":2480,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":138,"fiber_id":2776,"pid":138,"subject":"Async::Task","object_id":2784,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":108,"fiber_id":2792,"pid":108,"subject":"Async::Task","object_id":2800,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":42,"fiber_id":2248,"pid":42,"subject":"Async::Task","object_id":2256,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":15,"fiber_id":2536,"pid":15,"subject":"Async::Task","object_id":2544,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":159,"fiber_id":3288,"pid":159,"subject":"Async::Task","object_id":3296,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":27,"fiber_id":2184,"pid":27,"subject":"Async::Task","object_id":2192,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":63,"fiber_id":2568,"pid":63,"subject":"Async::Task","object_id":2576,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":114,"fiber_id":3080,"pid":114,"subject":"Async::Task","object_id":3088,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":90,"fiber_id":2776,"pid":90,"subject":"Async::Task","object_id":2784,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":180,"fiber_id":3624,"pid":180,"subject":"Async::Task","object_id":3632,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":33,"fiber_id":2600,"pid":33,"subject":"Async::Task","object_id":2608,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":48,"fiber_id":2552,"pid":48,"subject":"Async::Task","object_id":2560,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":78,"fiber_id":2696,"pid":78,"subject":"Async::Task","object_id":2704,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":192,"fiber_id":3576,"pid":192,"subject":"Async::Task","object_id":3584,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":18,"fiber_id":2440,"pid":18,"subject":"Async::Task","object_id":2448,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":186,"fiber_id":3544,"pid":186,"subject":"Async::Task","object_id":3552,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":198,"fiber_id":3656,"pid":198,"subject":"Async::Task","object_id":3664,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":69,"fiber_id":2424,"pid":69,"subject":"Async::Task","object_id":2432,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":189,"fiber_id":3640,"pid":189,"subject":"Async::Task","object_id":3648,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":99,"fiber_id":2984,"pid":99,"subject":"Async::Task","object_id":2992,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":156,"fiber_id":3096,"pid":156,"subject":"Async::Task","object_id":3104,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":138,"fiber_id":2792,"pid":138,"subject":"Async::Task","object_id":2800,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":144,"fiber_id":2856,"pid":144,"subject":"Async::Task","object_id":2864,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":21,"fiber_id":2232,"pid":21,"subject":"Async::Task","object_id":2240,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":96,"fiber_id":2792,"pid":96,"subject":"Async::Task","object_id":2800,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":18,"fiber_id":2456,"pid":18,"subject":"Async::Task","object_id":2464,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":60,"fiber_id":2648,"pid":60,"subject":"Async::Task","object_id":2656,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":183,"fiber_id":3320,"pid":183,"subject":"Async::Task","object_id":3328,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":108,"fiber_id":2808,"pid":108,"subject":"Async::Task","object_id":2816,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":78,"fiber_id":2712,"pid":78,"subject":"Async::Task","object_id":2720,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":138,"fiber_id":2808,"pid":138,"subject":"Async::Task","object_id":2816,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":18,"fiber_id":2472,"pid":18,"subject":"Async::Task","object_id":2480,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":51,"fiber_id":2296,"pid":51,"subject":"Async::Task","object_id":2304,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":174,"fiber_id":3464,"pid":174,"subject":"Async::Task","object_id":3472,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":150,"fiber_id":3160,"pid":150,"subject":"Async::Task","object_id":3168,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":123,"fiber_id":2888,"pid":123,"subject":"Async::Task","object_id":2896,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":159,"fiber_id":3304,"pid":159,"subject":"Async::Task","object_id":3312,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":36,"fiber_id":2488,"pid":36,"subject":"Async::Task","object_id":2496,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":192,"fiber_id":3592,"pid":192,"subject":"Async::Task","object_id":3600,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":141,"fiber_id":3192,"pid":141,"subject":"Async::Task","object_id":3200,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":126,"fiber_id":2936,"pid":126,"subject":"Async::Task","object_id":2944,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":12,"fiber_id":2488,"pid":12,"subject":"Async::Task","object_id":2496,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":18,"fiber_id":2488,"pid":18,"subject":"Async::Task","object_id":2496,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":57,"fiber_id":2792,"pid":57,"subject":"Async::Task","object_id":2800,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":114,"fiber_id":3096,"pid":114,"subject":"Async::Task","object_id":3104,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":195,"fiber_id":3736,"pid":195,"subject":"Async::Task","object_id":3744,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":51,"fiber_id":2312,"pid":51,"subject":"Async::Task","object_id":2320,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":69,"fiber_id":2440,"pid":69,"subject":"Async::Task","object_id":2448,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":54,"fiber_id":2568,"pid":54,"subject":"Async::Task","object_id":2576,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":24,"fiber_id":2440,"pid":24,"subject":"Async::Task","object_id":2448,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":36,"fiber_id":2504,"pid":36,"subject":"Async::Task","object_id":2512,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":192,"fiber_id":3608,"pid":192,"subject":"Async::Task","object_id":3616,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":168,"fiber_id":3384,"pid":168,"subject":"Async::Task","object_id":3392,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":51,"fiber_id":2328,"pid":51,"subject":"Async::Task","object_id":2336,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":153,"fiber_id":3304,"pid":153,"subject":"Async::Task","object_id":3312,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":54,"fiber_id":2584,"pid":54,"subject":"Async::Task","object_id":2592,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":108,"fiber_id":2824,"pid":108,"subject":"Async::Task","object_id":2832,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":99,"fiber_id":3000,"pid":99,"subject":"Async::Task","object_id":3008,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":39,"fiber_id":2600,"pid":39,"subject":"Async::Task","object_id":2608,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":150,"fiber_id":3176,"pid":150,"subject":"Async::Task","object_id":3184,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":30,"fiber_id":2520,"pid":30,"subject":"Async::Task","object_id":2528,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":63,"fiber_id":2584,"pid":63,"subject":"Async::Task","object_id":2592,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":105,"fiber_id":2952,"pid":105,"subject":"Async::Task","object_id":2960,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":168,"fiber_id":3400,"pid":168,"subject":"Async::Task","object_id":3408,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":150,"fiber_id":3192,"pid":150,"subject":"Async::Task","object_id":3200,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":72,"fiber_id":2600,"pid":72,"subject":"Async::Task","object_id":2608,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":138,"fiber_id":2824,"pid":138,"subject":"Async::Task","object_id":2832,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":192,"fiber_id":3624,"pid":192,"subject":"Async::Task","object_id":3632,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":144,"fiber_id":2872,"pid":144,"subject":"Async::Task","object_id":2880,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":27,"fiber_id":2200,"pid":27,"subject":"Async::Task","object_id":2208,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":117,"fiber_id":3128,"pid":117,"subject":"Async::Task","object_id":3136,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":120,"fiber_id":3256,"pid":120,"subject":"Async::Task","object_id":3264,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":111,"fiber_id":3016,"pid":111,"subject":"Async::Task","object_id":3024,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":12,"fiber_id":2504,"pid":12,"subject":"Async::Task","object_id":2512,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":42,"fiber_id":2264,"pid":42,"subject":"Async::Task","object_id":2272,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":63,"fiber_id":2600,"pid":63,"subject":"Async::Task","object_id":2608,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":87,"fiber_id":2792,"pid":87,"subject":"Async::Task","object_id":2800,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":15,"fiber_id":2552,"pid":15,"subject":"Async::Task","object_id":2560,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":126,"fiber_id":2952,"pid":126,"subject":"Async::Task","object_id":2960,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":177,"fiber_id":3720,"pid":177,"subject":"Async::Task","object_id":3728,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":144,"fiber_id":2888,"pid":144,"subject":"Async::Task","object_id":2896,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":78,"fiber_id":2728,"pid":78,"subject":"Async::Task","object_id":2736,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":138,"fiber_id":2840,"pid":138,"subject":"Async::Task","object_id":2848,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":147,"fiber_id":3096,"pid":147,"subject":"Async::Task","object_id":3104,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":75,"fiber_id":2504,"pid":75,"subject":"Async::Task","object_id":2512,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":81,"fiber_id":2664,"pid":81,"subject":"Async::Task","object_id":2672,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":69,"fiber_id":2456,"pid":69,"subject":"Async::Task","object_id":2464,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":72,"fiber_id":2616,"pid":72,"subject":"Async::Task","object_id":2624,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":30,"fiber_id":2536,"pid":30,"subject":"Async::Task","object_id":2544,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":174,"fiber_id":3480,"pid":174,"subject":"Async::Task","object_id":3488,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":195,"fiber_id":3752,"pid":195,"subject":"Async::Task","object_id":3760,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":138,"fiber_id":2856,"pid":138,"subject":"Async::Task","object_id":2864,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":150,"fiber_id":3208,"pid":150,"subject":"Async::Task","object_id":3216,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":69,"fiber_id":2472,"pid":69,"subject":"Async::Task","object_id":2480,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":12,"fiber_id":2520,"pid":12,"subject":"Async::Task","object_id":2528,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":57,"fiber_id":2808,"pid":57,"subject":"Async::Task","object_id":2816,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":126,"fiber_id":2968,"pid":126,"subject":"Async::Task","object_id":2976,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":36,"fiber_id":2520,"pid":36,"subject":"Async::Task","object_id":2528,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":54,"fiber_id":2600,"pid":54,"subject":"Async::Task","object_id":2608,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":120,"fiber_id":3272,"pid":120,"subject":"Async::Task","object_id":3280,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":33,"fiber_id":2616,"pid":33,"subject":"Async::Task","object_id":2624,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":63,"fiber_id":2616,"pid":63,"subject":"Async::Task","object_id":2624,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":90,"fiber_id":2792,"pid":90,"subject":"Async::Task","object_id":2800,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":87,"fiber_id":2808,"pid":87,"subject":"Async::Task","object_id":2816,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":138,"fiber_id":2872,"pid":138,"subject":"Async::Task","object_id":2880,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":54,"fiber_id":2616,"pid":54,"subject":"Async::Task","object_id":2624,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":96,"fiber_id":2808,"pid":96,"subject":"Async::Task","object_id":2816,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":117,"fiber_id":3144,"pid":117,"subject":"Async::Task","object_id":3152,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":78,"fiber_id":2744,"pid":78,"subject":"Async::Task","object_id":2752,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":105,"fiber_id":2968,"pid":105,"subject":"Async::Task","object_id":2976,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":120,"fiber_id":3288,"pid":120,"subject":"Async::Task","object_id":3296,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":147,"fiber_id":3112,"pid":147,"subject":"Async::Task","object_id":3120,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":12,"fiber_id":2536,"pid":12,"subject":"Async::Task","object_id":2544,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":57,"fiber_id":2824,"pid":57,"subject":"Async::Task","object_id":2832,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":54,"fiber_id":2632,"pid":54,"subject":"Async::Task","object_id":2640,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":150,"fiber_id":3224,"pid":150,"subject":"Async::Task","object_id":3232,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":39,"fiber_id":2616,"pid":39,"subject":"Async::Task","object_id":2624,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":30,"fiber_id":2552,"pid":30,"subject":"Async::Task","object_id":2560,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":63,"fiber_id":2632,"pid":63,"subject":"Async::Task","object_id":2640,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":21,"fiber_id":2248,"pid":21,"subject":"Async::Task","object_id":2256,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":18,"fiber_id":2504,"pid":18,"subject":"Async::Task","object_id":2512,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":42,"fiber_id":2280,"pid":42,"subject":"Async::Task","object_id":2288,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":114,"fiber_id":3112,"pid":114,"subject":"Async::Task","object_id":3120,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":45,"fiber_id":2328,"pid":45,"subject":"Async::Task","object_id":2336,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":33,"fiber_id":2632,"pid":33,"subject":"Async::Task","object_id":2640,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":177,"fiber_id":3736,"pid":177,"subject":"Async::Task","object_id":3744,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":126,"fiber_id":2984,"pid":126,"subject":"Async::Task","object_id":2992,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":150,"fiber_id":3240,"pid":150,"subject":"Async::Task","object_id":3248,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":69,"fiber_id":2488,"pid":69,"subject":"Async::Task","object_id":2496,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":168,"fiber_id":3416,"pid":168,"subject":"Async::Task","object_id":3424,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":93,"fiber_id":2920,"pid":93,"subject":"Async::Task","object_id":2928,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":75,"fiber_id":2520,"pid":75,"subject":"Async::Task","object_id":2528,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":33,"fiber_id":2648,"pid":33,"subject":"Async::Task","object_id":2656,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":99,"fiber_id":3016,"pid":99,"subject":"Async::Task","object_id":3024,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":48,"fiber_id":2568,"pid":48,"subject":"Async::Task","object_id":2576,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":114,"fiber_id":3128,"pid":114,"subject":"Async::Task","object_id":3136,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":69,"fiber_id":2504,"pid":69,"subject":"Async::Task","object_id":2512,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":180,"fiber_id":3640,"pid":180,"subject":"Async::Task","object_id":3648,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":81,"fiber_id":2680,"pid":81,"subject":"Async::Task","object_id":2688,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":141,"fiber_id":3208,"pid":141,"subject":"Async::Task","object_id":3216,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":111,"fiber_id":3032,"pid":111,"subject":"Async::Task","object_id":3040,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":120,"fiber_id":3304,"pid":120,"subject":"Async::Task","object_id":3312,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":168,"fiber_id":3432,"pid":168,"subject":"Async::Task","object_id":3440,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":12,"fiber_id":2552,"pid":12,"subject":"Async::Task","object_id":2560,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":15,"fiber_id":2568,"pid":15,"subject":"Async::Task","object_id":2576,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":36,"fiber_id":2536,"pid":36,"subject":"Async::Task","object_id":2544,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":195,"fiber_id":3768,"pid":195,"subject":"Async::Task","object_id":3776,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":126,"fiber_id":3000,"pid":126,"subject":"Async::Task","object_id":3008,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":156,"fiber_id":3112,"pid":156,"subject":"Async::Task","object_id":3120,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":132,"fiber_id":3496,"pid":132,"subject":"Async::Task","object_id":3504,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":114,"fiber_id":3144,"pid":114,"subject":"Async::Task","object_id":3152,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":33,"fiber_id":2664,"pid":33,"subject":"Async::Task","object_id":2672,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":36,"fiber_id":2552,"pid":36,"subject":"Async::Task","object_id":2560,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":132,"fiber_id":3512,"pid":132,"subject":"Async::Task","object_id":3520,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":75,"fiber_id":2536,"pid":75,"subject":"Async::Task","object_id":2544,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":168,"fiber_id":3448,"pid":168,"subject":"Async::Task","object_id":3456,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":105,"fiber_id":2984,"pid":105,"subject":"Async::Task","object_id":2992,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":60,"fiber_id":2664,"pid":60,"subject":"Async::Task","object_id":2672,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":144,"fiber_id":2904,"pid":144,"subject":"Async::Task","object_id":2912,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":72,"fiber_id":2632,"pid":72,"subject":"Async::Task","object_id":2640,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":171,"fiber_id":3192,"pid":171,"subject":"Async::Task","object_id":3200,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":165,"fiber_id":3608,"pid":165,"subject":"Async::Task","object_id":3616,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":18,"fiber_id":2520,"pid":18,"subject":"Async::Task","object_id":2528,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":81,"fiber_id":2696,"pid":81,"subject":"Async::Task","object_id":2704,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":186,"fiber_id":3560,"pid":186,"subject":"Async::Task","object_id":3568,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":162,"fiber_id":3416,"pid":162,"subject":"Async::Task","object_id":3424,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":126,"fiber_id":3016,"pid":126,"subject":"Async::Task","object_id":3024,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":72,"fiber_id":2648,"pid":72,"subject":"Async::Task","object_id":2656,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":132,"fiber_id":3528,"pid":132,"subject":"Async::Task","object_id":3536,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":15,"fiber_id":2584,"pid":15,"subject":"Async::Task","object_id":2592,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":60,"fiber_id":2680,"pid":60,"subject":"Async::Task","object_id":2688,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":138,"fiber_id":2888,"pid":138,"subject":"Async::Task","object_id":2896,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":66,"fiber_id":2488,"pid":66,"subject":"Async::Task","object_id":2496,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":189,"fiber_id":3656,"pid":189,"subject":"Async::Task","object_id":3664,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":72,"fiber_id":2664,"pid":72,"subject":"Async::Task","object_id":2672,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":168,"fiber_id":3464,"pid":168,"subject":"Async::Task","object_id":3472,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":177,"fiber_id":3752,"pid":177,"subject":"Async::Task","object_id":3760,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":15,"fiber_id":2600,"pid":15,"subject":"Async::Task","object_id":2608,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":114,"fiber_id":3160,"pid":114,"subject":"Async::Task","object_id":3168,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":18,"fiber_id":2536,"pid":18,"subject":"Async::Task","object_id":2544,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":45,"fiber_id":2344,"pid":45,"subject":"Async::Task","object_id":2352,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":21,"fiber_id":2264,"pid":21,"subject":"Async::Task","object_id":2272,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":120,"fiber_id":3320,"pid":120,"subject":"Async::Task","object_id":3328,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":51,"fiber_id":2344,"pid":51,"subject":"Async::Task","object_id":2352,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":57,"fiber_id":2840,"pid":57,"subject":"Async::Task","object_id":2848,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":66,"fiber_id":2504,"pid":66,"subject":"Async::Task","object_id":2512,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":54,"fiber_id":2648,"pid":54,"subject":"Async::Task","object_id":2656,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":30,"fiber_id":2568,"pid":30,"subject":"Async::Task","object_id":2576,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":102,"fiber_id":2904,"pid":102,"subject":"Async::Task","object_id":2912,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":39,"fiber_id":2632,"pid":39,"subject":"Async::Task","object_id":2640,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":177,"fiber_id":3768,"pid":177,"subject":"Async::Task","object_id":3776,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":141,"fiber_id":3224,"pid":141,"subject":"Async::Task","object_id":3232,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":12,"fiber_id":2568,"pid":12,"subject":"Async::Task","object_id":2576,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":114,"fiber_id":3176,"pid":114,"subject":"Async::Task","object_id":3184,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":150,"fiber_id":3256,"pid":150,"subject":"Async::Task","object_id":3264,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":90,"fiber_id":2808,"pid":90,"subject":"Async::Task","object_id":2816,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":144,"fiber_id":2920,"pid":144,"subject":"Async::Task","object_id":2928,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":72,"fiber_id":2680,"pid":72,"subject":"Async::Task","object_id":2688,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":48,"fiber_id":2584,"pid":48,"subject":"Async::Task","object_id":2592,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":108,"fiber_id":2840,"pid":108,"subject":"Async::Task","object_id":2848,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":168,"fiber_id":3480,"pid":168,"subject":"Async::Task","object_id":3488,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":189,"fiber_id":3672,"pid":189,"subject":"Async::Task","object_id":3680,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":27,"fiber_id":2216,"pid":27,"subject":"Async::Task","object_id":2224,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":72,"fiber_id":2696,"pid":72,"subject":"Async::Task","object_id":2704,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":147,"fiber_id":3128,"pid":147,"subject":"Async::Task","object_id":3136,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":132,"fiber_id":3544,"pid":132,"subject":"Async::Task","object_id":3552,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":111,"fiber_id":3048,"pid":111,"subject":"Async::Task","object_id":3056,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":45,"fiber_id":2360,"pid":45,"subject":"Async::Task","object_id":2368,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":120,"fiber_id":3336,"pid":120,"subject":"Async::Task","object_id":3344,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":159,"fiber_id":3320,"pid":159,"subject":"Async::Task","object_id":3328,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":21,"fiber_id":2280,"pid":21,"subject":"Async::Task","object_id":2288,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":144,"fiber_id":2936,"pid":144,"subject":"Async::Task","object_id":2944,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":81,"fiber_id":2712,"pid":81,"subject":"Async::Task","object_id":2720,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":138,"fiber_id":2904,"pid":138,"subject":"Async::Task","object_id":2912,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":42,"fiber_id":2296,"pid":42,"subject":"Async::Task","object_id":2304,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":171,"fiber_id":3208,"pid":171,"subject":"Async::Task","object_id":3216,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":153,"fiber_id":3320,"pid":153,"subject":"Async::Task","object_id":3328,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":165,"fiber_id":3624,"pid":165,"subject":"Async::Task","object_id":3632,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":48,"fiber_id":2600,"pid":48,"subject":"Async::Task","object_id":2608,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":9,"fiber_id":2280,"pid":9,"subject":"Async::Task","object_id":2288,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":84,"fiber_id":2568,"pid":84,"subject":"Async::Task","object_id":2576,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":150,"fiber_id":3272,"pid":150,"subject":"Async::Task","object_id":3280,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":18,"fiber_id":2552,"pid":18,"subject":"Async::Task","object_id":2560,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":123,"fiber_id":2904,"pid":123,"subject":"Async::Task","object_id":2912,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":36,"fiber_id":2568,"pid":36,"subject":"Async::Task","object_id":2576,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":114,"fiber_id":3192,"pid":114,"subject":"Async::Task","object_id":3200,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":117,"fiber_id":3160,"pid":117,"subject":"Async::Task","object_id":3168,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":84,"fiber_id":2584,"pid":84,"subject":"Async::Task","object_id":2592,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":147,"fiber_id":3144,"pid":147,"subject":"Async::Task","object_id":3152,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":162,"fiber_id":3432,"pid":162,"subject":"Async::Task","object_id":3440,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":174,"fiber_id":3496,"pid":174,"subject":"Async::Task","object_id":3504,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":27,"fiber_id":2232,"pid":27,"subject":"Async::Task","object_id":2240,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":48,"fiber_id":2616,"pid":48,"subject":"Async::Task","object_id":2624,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":186,"fiber_id":3576,"pid":186,"subject":"Async::Task","object_id":3584,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":150,"fiber_id":3288,"pid":150,"subject":"Async::Task","object_id":3296,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":195,"fiber_id":3784,"pid":195,"subject":"Async::Task","object_id":3792,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":42,"fiber_id":2312,"pid":42,"subject":"Async::Task","object_id":2320,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":117,"fiber_id":3176,"pid":117,"subject":"Async::Task","object_id":3184,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":183,"fiber_id":3336,"pid":183,"subject":"Async::Task","object_id":3344,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":66,"fiber_id":2520,"pid":66,"subject":"Async::Task","object_id":2528,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":93,"fiber_id":2936,"pid":93,"subject":"Async::Task","object_id":2944,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":111,"fiber_id":3064,"pid":111,"subject":"Async::Task","object_id":3072,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":171,"fiber_id":3224,"pid":171,"subject":"Async::Task","object_id":3232,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":141,"fiber_id":3240,"pid":141,"subject":"Async::Task","object_id":3248,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":51,"fiber_id":2360,"pid":51,"subject":"Async::Task","object_id":2368,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":18,"fiber_id":2568,"pid":18,"subject":"Async::Task","object_id":2576,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":21,"fiber_id":2296,"pid":21,"subject":"Async::Task","object_id":2304,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":30,"fiber_id":2584,"pid":30,"subject":"Async::Task","object_id":2592,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":42,"fiber_id":2328,"pid":42,"subject":"Async::Task","object_id":2336,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":84,"fiber_id":2600,"pid":84,"subject":"Async::Task","object_id":2608,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":108,"fiber_id":2856,"pid":108,"subject":"Async::Task","object_id":2864,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":24,"fiber_id":2456,"pid":24,"subject":"Async::Task","object_id":2464,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":150,"fiber_id":3304,"pid":150,"subject":"Async::Task","object_id":3312,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":9,"fiber_id":2296,"pid":9,"subject":"Async::Task","object_id":2304,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":78,"fiber_id":2760,"pid":78,"subject":"Async::Task","object_id":2768,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":159,"fiber_id":3336,"pid":159,"subject":"Async::Task","object_id":3344,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":27,"fiber_id":2248,"pid":27,"subject":"Async::Task","object_id":2256,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":165,"fiber_id":3640,"pid":165,"subject":"Async::Task","object_id":3648,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":48,"fiber_id":2632,"pid":48,"subject":"Async::Task","object_id":2640,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":156,"fiber_id":3128,"pid":156,"subject":"Async::Task","object_id":3136,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":57,"fiber_id":2856,"pid":57,"subject":"Async::Task","object_id":2864,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":183,"fiber_id":3384,"pid":183,"subject":"Async::Task","object_id":3392,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":120,"fiber_id":3352,"pid":120,"subject":"Async::Task","object_id":3360,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":15,"fiber_id":2616,"pid":15,"subject":"Async::Task","object_id":2624,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":144,"fiber_id":2952,"pid":144,"subject":"Async::Task","object_id":2960,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":75,"fiber_id":2552,"pid":75,"subject":"Async::Task","object_id":2560,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":9,"fiber_id":2312,"pid":9,"subject":"Async::Task","object_id":2320,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":78,"fiber_id":2776,"pid":78,"subject":"Async::Task","object_id":2784,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":198,"fiber_id":3672,"pid":198,"subject":"Async::Task","object_id":3680,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":189,"fiber_id":3688,"pid":189,"subject":"Async::Task","object_id":3696,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":18,"fiber_id":2584,"pid":18,"subject":"Async::Task","object_id":2592,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":24,"fiber_id":2472,"pid":24,"subject":"Async::Task","object_id":2480,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":54,"fiber_id":2696,"pid":54,"subject":"Async::Task","object_id":2704,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":15,"fiber_id":2632,"pid":15,"subject":"Async::Task","object_id":2640,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":138,"fiber_id":2920,"pid":138,"subject":"Async::Task","object_id":2928,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":168,"fiber_id":3496,"pid":168,"subject":"Async::Task","object_id":3504,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":87,"fiber_id":2824,"pid":87,"subject":"Async::Task","object_id":2832,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":30,"fiber_id":2600,"pid":30,"subject":"Async::Task","object_id":2608,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":27,"fiber_id":2264,"pid":27,"subject":"Async::Task","object_id":2272,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":39,"fiber_id":2648,"pid":39,"subject":"Async::Task","object_id":2656,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":186,"fiber_id":3592,"pid":186,"subject":"Async::Task","object_id":3600,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":42,"fiber_id":2344,"pid":42,"subject":"Async::Task","object_id":2352,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":195,"fiber_id":3816,"pid":195,"subject":"Async::Task","object_id":3824,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":180,"fiber_id":3656,"pid":180,"subject":"Async::Task","object_id":3664,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":147,"fiber_id":3160,"pid":147,"subject":"Async::Task","object_id":3168,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":171,"fiber_id":3240,"pid":171,"subject":"Async::Task","object_id":3248,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":21,"fiber_id":2312,"pid":21,"subject":"Async::Task","object_id":2320,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":84,"fiber_id":2616,"pid":84,"subject":"Async::Task","object_id":2624,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":126,"fiber_id":3032,"pid":126,"subject":"Async::Task","object_id":3040,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":60,"fiber_id":2696,"pid":60,"subject":"Async::Task","object_id":2704,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":114,"fiber_id":3208,"pid":114,"subject":"Async::Task","object_id":3216,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":168,"fiber_id":3512,"pid":168,"subject":"Async::Task","object_id":3520,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":18,"fiber_id":2600,"pid":18,"subject":"Async::Task","object_id":2608,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":183,"fiber_id":3400,"pid":183,"subject":"Async::Task","object_id":3408,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":75,"fiber_id":2568,"pid":75,"subject":"Async::Task","object_id":2576,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":72,"fiber_id":2712,"pid":72,"subject":"Async::Task","object_id":2720,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":66,"fiber_id":2536,"pid":66,"subject":"Async::Task","object_id":2544,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":27,"fiber_id":2280,"pid":27,"subject":"Async::Task","object_id":2288,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":105,"fiber_id":3000,"pid":105,"subject":"Async::Task","object_id":3008,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":39,"fiber_id":2664,"pid":39,"subject":"Async::Task","object_id":2672,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":33,"fiber_id":2680,"pid":33,"subject":"Async::Task","object_id":2688,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":174,"fiber_id":3512,"pid":174,"subject":"Async::Task","object_id":3520,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":99,"fiber_id":3032,"pid":99,"subject":"Async::Task","object_id":3040,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":147,"fiber_id":3176,"pid":147,"subject":"Async::Task","object_id":3184,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":75,"fiber_id":2584,"pid":75,"subject":"Async::Task","object_id":2592,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":72,"fiber_id":2728,"pid":72,"subject":"Async::Task","object_id":2736,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":18,"fiber_id":2616,"pid":18,"subject":"Async::Task","object_id":2624,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":60,"fiber_id":2712,"pid":60,"subject":"Async::Task","object_id":2720,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":27,"fiber_id":2296,"pid":27,"subject":"Async::Task","object_id":2304,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":57,"fiber_id":2872,"pid":57,"subject":"Async::Task","object_id":2880,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":105,"fiber_id":3016,"pid":105,"subject":"Async::Task","object_id":3024,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":42,"fiber_id":2360,"pid":42,"subject":"Async::Task","object_id":2368,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":39,"fiber_id":2680,"pid":39,"subject":"Async::Task","object_id":2688,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":33,"fiber_id":2696,"pid":33,"subject":"Async::Task","object_id":2704,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":183,"fiber_id":3416,"pid":183,"subject":"Async::Task","object_id":3424,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":102,"fiber_id":2920,"pid":102,"subject":"Async::Task","object_id":2928,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":90,"fiber_id":2824,"pid":90,"subject":"Async::Task","object_id":2832,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":15,"fiber_id":2648,"pid":15,"subject":"Async::Task","object_id":2656,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":198,"fiber_id":3688,"pid":198,"subject":"Async::Task","object_id":3696,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":12,"fiber_id":2584,"pid":12,"subject":"Async::Task","object_id":2592,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":165,"fiber_id":3656,"pid":165,"subject":"Async::Task","object_id":3664,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":45,"fiber_id":2376,"pid":45,"subject":"Async::Task","object_id":2384,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":180,"fiber_id":3672,"pid":180,"subject":"Async::Task","object_id":3680,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":147,"fiber_id":3192,"pid":147,"subject":"Async::Task","object_id":3200,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":120,"fiber_id":3368,"pid":120,"subject":"Async::Task","object_id":3376,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":36,"fiber_id":2584,"pid":36,"subject":"Async::Task","object_id":2592,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":27,"fiber_id":2312,"pid":27,"subject":"Async::Task","object_id":2320,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":78,"fiber_id":2792,"pid":78,"subject":"Async::Task","object_id":2800,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":189,"fiber_id":3704,"pid":189,"subject":"Async::Task","object_id":3712,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":198,"fiber_id":3704,"pid":198,"subject":"Async::Task","object_id":3712,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":195,"fiber_id":3832,"pid":195,"subject":"Async::Task","object_id":3840,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":60,"fiber_id":2728,"pid":60,"subject":"Async::Task","object_id":2736,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":24,"fiber_id":2488,"pid":24,"subject":"Async::Task","object_id":2496,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":63,"fiber_id":2648,"pid":63,"subject":"Async::Task","object_id":2656,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":186,"fiber_id":3608,"pid":186,"subject":"Async::Task","object_id":3616,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":162,"fiber_id":3448,"pid":162,"subject":"Async::Task","object_id":3456,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":9,"fiber_id":2328,"pid":9,"subject":"Async::Task","object_id":2336,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":171,"fiber_id":3256,"pid":171,"subject":"Async::Task","object_id":3264,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":48,"fiber_id":2648,"pid":48,"subject":"Async::Task","object_id":2656,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":147,"fiber_id":3208,"pid":147,"subject":"Async::Task","object_id":3216,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":72,"fiber_id":2744,"pid":72,"subject":"Async::Task","object_id":2752,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":138,"fiber_id":2936,"pid":138,"subject":"Async::Task","object_id":2944,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":174,"fiber_id":3528,"pid":174,"subject":"Async::Task","object_id":3536,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":102,"fiber_id":2936,"pid":102,"subject":"Async::Task","object_id":2944,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":123,"fiber_id":2920,"pid":123,"subject":"Async::Task","object_id":2928,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":186,"fiber_id":3624,"pid":186,"subject":"Async::Task","object_id":3632,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":63,"fiber_id":2664,"pid":63,"subject":"Async::Task","object_id":2672,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":18,"fiber_id":2632,"pid":18,"subject":"Async::Task","object_id":2640,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":105,"fiber_id":3032,"pid":105,"subject":"Async::Task","object_id":3040,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":156,"fiber_id":3144,"pid":156,"subject":"Async::Task","object_id":3152,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":30,"fiber_id":2616,"pid":30,"subject":"Async::Task","object_id":2624,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":180,"fiber_id":3688,"pid":180,"subject":"Async::Task","object_id":3696,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":21,"fiber_id":2328,"pid":21,"subject":"Async::Task","object_id":2336,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":117,"fiber_id":3192,"pid":117,"subject":"Async::Task","object_id":3200,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":78,"fiber_id":2808,"pid":78,"subject":"Async::Task","object_id":2816,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":12,"fiber_id":2600,"pid":12,"subject":"Async::Task","object_id":2608,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":150,"fiber_id":3320,"pid":150,"subject":"Async::Task","object_id":3328,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":93,"fiber_id":2952,"pid":93,"subject":"Async::Task","object_id":2960,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":54,"fiber_id":2712,"pid":54,"subject":"Async::Task","object_id":2720,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":180,"fiber_id":3704,"pid":180,"subject":"Async::Task","object_id":3712,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":9,"fiber_id":2344,"pid":9,"subject":"Async::Task","object_id":2352,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":195,"fiber_id":3800,"pid":195,"subject":"Async::Task","object_id":3808,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":66,"fiber_id":2552,"pid":66,"subject":"Async::Task","object_id":2560,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":21,"fiber_id":2344,"pid":21,"subject":"Async::Task","object_id":2352,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":93,"fiber_id":2968,"pid":93,"subject":"Async::Task","object_id":2976,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":75,"fiber_id":2600,"pid":75,"subject":"Async::Task","object_id":2608,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":165,"fiber_id":3672,"pid":165,"subject":"Async::Task","object_id":3680,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":150,"fiber_id":3336,"pid":150,"subject":"Async::Task","object_id":3344,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":78,"fiber_id":2824,"pid":78,"subject":"Async::Task","object_id":2832,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":183,"fiber_id":3432,"pid":183,"subject":"Async::Task","object_id":3440,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":18,"fiber_id":2648,"pid":18,"subject":"Async::Task","object_id":2656,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":51,"fiber_id":2376,"pid":51,"subject":"Async::Task","object_id":2384,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":12,"fiber_id":2616,"pid":12,"subject":"Async::Task","object_id":2624,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":102,"fiber_id":2952,"pid":102,"subject":"Async::Task","object_id":2960,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":54,"fiber_id":2744,"pid":54,"subject":"Async::Task","object_id":2752,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":153,"fiber_id":3336,"pid":153,"subject":"Async::Task","object_id":3344,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":75,"fiber_id":2616,"pid":75,"subject":"Async::Task","object_id":2624,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":21,"fiber_id":2360,"pid":21,"subject":"Async::Task","object_id":2368,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":159,"fiber_id":3352,"pid":159,"subject":"Async::Task","object_id":3360,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":105,"fiber_id":3048,"pid":105,"subject":"Async::Task","object_id":3056,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":183,"fiber_id":3448,"pid":183,"subject":"Async::Task","object_id":3456,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":84,"fiber_id":2632,"pid":84,"subject":"Async::Task","object_id":2640,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":153,"fiber_id":3352,"pid":153,"subject":"Async::Task","object_id":3360,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":51,"fiber_id":2424,"pid":51,"subject":"Async::Task","object_id":2432,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":63,"fiber_id":2680,"pid":63,"subject":"Async::Task","object_id":2688,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":174,"fiber_id":3544,"pid":174,"subject":"Async::Task","object_id":3552,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":180,"fiber_id":3720,"pid":180,"subject":"Async::Task","object_id":3728,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":123,"fiber_id":2936,"pid":123,"subject":"Async::Task","object_id":2944,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":90,"fiber_id":2840,"pid":90,"subject":"Async::Task","object_id":2848,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":138,"fiber_id":2952,"pid":138,"subject":"Async::Task","object_id":2960,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":51,"fiber_id":2440,"pid":51,"subject":"Async::Task","object_id":2448,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":81,"fiber_id":2728,"pid":81,"subject":"Async::Task","object_id":2736,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":9,"fiber_id":2360,"pid":9,"subject":"Async::Task","object_id":2368,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":153,"fiber_id":3368,"pid":153,"subject":"Async::Task","object_id":3376,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":84,"fiber_id":2648,"pid":84,"subject":"Async::Task","object_id":2656,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":195,"fiber_id":3848,"pid":195,"subject":"Async::Task","object_id":3856,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":150,"fiber_id":3352,"pid":150,"subject":"Async::Task","object_id":3360,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":63,"fiber_id":2696,"pid":63,"subject":"Async::Task","object_id":2704,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":39,"fiber_id":2696,"pid":39,"subject":"Async::Task","object_id":2704,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":120,"fiber_id":3384,"pid":120,"subject":"Async::Task","object_id":3392,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":54,"fiber_id":2760,"pid":54,"subject":"Async::Task","object_id":2768,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":21,"fiber_id":2376,"pid":21,"subject":"Async::Task","object_id":2384,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":57,"fiber_id":2888,"pid":57,"subject":"Async::Task","object_id":2896,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":180,"fiber_id":3736,"pid":180,"subject":"Async::Task","object_id":3744,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":12,"fiber_id":2632,"pid":12,"subject":"Async::Task","object_id":2640,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":153,"fiber_id":3384,"pid":153,"subject":"Async::Task","object_id":3392,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":132,"fiber_id":3560,"pid":132,"subject":"Async::Task","object_id":3568,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":90,"fiber_id":2856,"pid":90,"subject":"Async::Task","object_id":2864,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":195,"fiber_id":3864,"pid":195,"subject":"Async::Task","object_id":3872,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":159,"fiber_id":3368,"pid":159,"subject":"Async::Task","object_id":3376,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":117,"fiber_id":3208,"pid":117,"subject":"Async::Task","object_id":3216,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":186,"fiber_id":3640,"pid":186,"subject":"Async::Task","object_id":3648,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":111,"fiber_id":3080,"pid":111,"subject":"Async::Task","object_id":3088,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":153,"fiber_id":3400,"pid":153,"subject":"Async::Task","object_id":3408,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":141,"fiber_id":3256,"pid":141,"subject":"Async::Task","object_id":3264,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":78,"fiber_id":2840,"pid":78,"subject":"Async::Task","object_id":2848,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":123,"fiber_id":2952,"pid":123,"subject":"Async::Task","object_id":2960,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":174,"fiber_id":3560,"pid":174,"subject":"Async::Task","object_id":3568,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":153,"fiber_id":3416,"pid":153,"subject":"Async::Task","object_id":3424,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":105,"fiber_id":3064,"pid":105,"subject":"Async::Task","object_id":3072,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":186,"fiber_id":3656,"pid":186,"subject":"Async::Task","object_id":3664,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":75,"fiber_id":2632,"pid":75,"subject":"Async::Task","object_id":2640,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":132,"fiber_id":3576,"pid":132,"subject":"Async::Task","object_id":3584,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":192,"fiber_id":3640,"pid":192,"subject":"Async::Task","object_id":3648,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":30,"fiber_id":2632,"pid":30,"subject":"Async::Task","object_id":2640,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":117,"fiber_id":3224,"pid":117,"subject":"Async::Task","object_id":3232,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":75,"fiber_id":2648,"pid":75,"subject":"Async::Task","object_id":2656,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":153,"fiber_id":3432,"pid":153,"subject":"Async::Task","object_id":3440,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":12,"fiber_id":2648,"pid":12,"subject":"Async::Task","object_id":2656,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":147,"fiber_id":3224,"pid":147,"subject":"Async::Task","object_id":3232,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":153,"fiber_id":3448,"pid":153,"subject":"Async::Task","object_id":3456,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":45,"fiber_id":2392,"pid":45,"subject":"Async::Task","object_id":2400,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":150,"fiber_id":3368,"pid":150,"subject":"Async::Task","object_id":3376,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":12,"fiber_id":2664,"pid":12,"subject":"Async::Task","object_id":2672,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":81,"fiber_id":2744,"pid":81,"subject":"Async::Task","object_id":2752,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":126,"fiber_id":3048,"pid":126,"subject":"Async::Task","object_id":3056,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":15,"fiber_id":2664,"pid":15,"subject":"Async::Task","object_id":2672,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":153,"fiber_id":3464,"pid":153,"subject":"Async::Task","object_id":3472,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":141,"fiber_id":3272,"pid":141,"subject":"Async::Task","object_id":3280,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":114,"fiber_id":3224,"pid":114,"subject":"Async::Task","object_id":3232,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":192,"fiber_id":3656,"pid":192,"subject":"Async::Task","object_id":3664,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":159,"fiber_id":3384,"pid":159,"subject":"Async::Task","object_id":3392,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":78,"fiber_id":2856,"pid":78,"subject":"Async::Task","object_id":2864,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":81,"fiber_id":2760,"pid":81,"subject":"Async::Task","object_id":2768,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":99,"fiber_id":3048,"pid":99,"subject":"Async::Task","object_id":3056,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":132,"fiber_id":3592,"pid":132,"subject":"Async::Task","object_id":3600,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":153,"fiber_id":3480,"pid":153,"subject":"Async::Task","object_id":3488,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":183,"fiber_id":3352,"pid":183,"subject":"Async::Task","object_id":3360,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":141,"fiber_id":3288,"pid":141,"subject":"Async::Task","object_id":3296,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":183,"fiber_id":3368,"pid":183,"subject":"Async::Task","object_id":3376,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":174,"fiber_id":3576,"pid":174,"subject":"Async::Task","object_id":3584,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":63,"fiber_id":2712,"pid":63,"subject":"Async::Task","object_id":2720,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":168,"fiber_id":3528,"pid":168,"subject":"Async::Task","object_id":3536,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":126,"fiber_id":3112,"pid":126,"subject":"Async::Task","object_id":3120,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":15,"fiber_id":2680,"pid":15,"subject":"Async::Task","object_id":2688,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":33,"fiber_id":2712,"pid":33,"subject":"Async::Task","object_id":2720,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":93,"fiber_id":2984,"pid":93,"subject":"Async::Task","object_id":2992,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":195,"fiber_id":3880,"pid":195,"subject":"Async::Task","object_id":3888,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":24,"fiber_id":2504,"pid":24,"subject":"Async::Task","object_id":2512,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":27,"fiber_id":2328,"pid":27,"subject":"Async::Task","object_id":2336,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":165,"fiber_id":3688,"pid":165,"subject":"Async::Task","object_id":3696,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":123,"fiber_id":2968,"pid":123,"subject":"Async::Task","object_id":2976,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":153,"fiber_id":3496,"pid":153,"subject":"Async::Task","object_id":3504,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":156,"fiber_id":3160,"pid":156,"subject":"Async::Task","object_id":3168,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":78,"fiber_id":2872,"pid":78,"subject":"Async::Task","object_id":2880,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":69,"fiber_id":2520,"pid":69,"subject":"Async::Task","object_id":2528,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":150,"fiber_id":3384,"pid":150,"subject":"Async::Task","object_id":3392,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":84,"fiber_id":2664,"pid":84,"subject":"Async::Task","object_id":2672,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":48,"fiber_id":2664,"pid":48,"subject":"Async::Task","object_id":2672,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":12,"fiber_id":2680,"pid":12,"subject":"Async::Task","object_id":2688,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":168,"fiber_id":3544,"pid":168,"subject":"Async::Task","object_id":3552,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":78,"fiber_id":2888,"pid":78,"subject":"Async::Task","object_id":2896,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":69,"fiber_id":2536,"pid":69,"subject":"Async::Task","object_id":2544,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":15,"fiber_id":2696,"pid":15,"subject":"Async::Task","object_id":2704,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":123,"fiber_id":2984,"pid":123,"subject":"Async::Task","object_id":2992,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":90,"fiber_id":2872,"pid":90,"subject":"Async::Task","object_id":2880,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":171,"fiber_id":3272,"pid":171,"subject":"Async::Task","object_id":3280,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":78,"fiber_id":2904,"pid":78,"subject":"Async::Task","object_id":2912,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":147,"fiber_id":3240,"pid":147,"subject":"Async::Task","object_id":3248,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":162,"fiber_id":3464,"pid":162,"subject":"Async::Task","object_id":3472,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":18,"fiber_id":2664,"pid":18,"subject":"Async::Task","object_id":2672,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":48,"fiber_id":2680,"pid":48,"subject":"Async::Task","object_id":2688,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":54,"fiber_id":2776,"pid":54,"subject":"Async::Task","object_id":2784,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":186,"fiber_id":3672,"pid":186,"subject":"Async::Task","object_id":3680,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":51,"fiber_id":2456,"pid":51,"subject":"Async::Task","object_id":2464,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":87,"fiber_id":2840,"pid":87,"subject":"Async::Task","object_id":2848,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":102,"fiber_id":2968,"pid":102,"subject":"Async::Task","object_id":2976,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":153,"fiber_id":3512,"pid":153,"subject":"Async::Task","object_id":3520,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":168,"fiber_id":3560,"pid":168,"subject":"Async::Task","object_id":3568,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":123,"fiber_id":3000,"pid":123,"subject":"Async::Task","object_id":3008,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":108,"fiber_id":2872,"pid":108,"subject":"Async::Task","object_id":2880,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":192,"fiber_id":3672,"pid":192,"subject":"Async::Task","object_id":3680,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":42,"fiber_id":2376,"pid":42,"subject":"Async::Task","object_id":2384,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":189,"fiber_id":3720,"pid":189,"subject":"Async::Task","object_id":3728,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":63,"fiber_id":2728,"pid":63,"subject":"Async::Task","object_id":2736,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":150,"fiber_id":3400,"pid":150,"subject":"Async::Task","object_id":3408,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":24,"fiber_id":2520,"pid":24,"subject":"Async::Task","object_id":2528,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":123,"fiber_id":3016,"pid":123,"subject":"Async::Task","object_id":3024,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":54,"fiber_id":2680,"pid":54,"subject":"Async::Task","object_id":2688,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":156,"fiber_id":3176,"pid":156,"subject":"Async::Task","object_id":3184,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":189,"fiber_id":3736,"pid":189,"subject":"Async::Task","object_id":3744,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":99,"fiber_id":3064,"pid":99,"subject":"Async::Task","object_id":3072,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":63,"fiber_id":2744,"pid":63,"subject":"Async::Task","object_id":2752,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":159,"fiber_id":3400,"pid":159,"subject":"Async::Task","object_id":3408,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":123,"fiber_id":3032,"pid":123,"subject":"Async::Task","object_id":3040,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":51,"fiber_id":2392,"pid":51,"subject":"Async::Task","object_id":2400,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":150,"fiber_id":3416,"pid":150,"subject":"Async::Task","object_id":3424,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":51,"fiber_id":2408,"pid":51,"subject":"Async::Task","object_id":2416,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":15,"fiber_id":2712,"pid":15,"subject":"Async::Task","object_id":2720,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":75,"fiber_id":2664,"pid":75,"subject":"Async::Task","object_id":2672,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":180,"fiber_id":3752,"pid":180,"subject":"Async::Task","object_id":3760,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":9,"fiber_id":2376,"pid":9,"subject":"Async::Task","object_id":2384,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":123,"fiber_id":3048,"pid":123,"subject":"Async::Task","object_id":3056,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":168,"fiber_id":3576,"pid":168,"subject":"Async::Task","object_id":3584,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":186,"fiber_id":3688,"pid":186,"subject":"Async::Task","object_id":3696,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":123,"fiber_id":3064,"pid":123,"subject":"Async::Task","object_id":3072,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":18,"fiber_id":2680,"pid":18,"subject":"Async::Task","object_id":2688,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":189,"fiber_id":3752,"pid":189,"subject":"Async::Task","object_id":3760,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":177,"fiber_id":3784,"pid":177,"subject":"Async::Task","object_id":3792,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":159,"fiber_id":3416,"pid":159,"subject":"Async::Task","object_id":3424,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":93,"fiber_id":3000,"pid":93,"subject":"Async::Task","object_id":3008,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":45,"fiber_id":2408,"pid":45,"subject":"Async::Task","object_id":2416,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":9,"fiber_id":2392,"pid":9,"subject":"Async::Task","object_id":2400,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":189,"fiber_id":3768,"pid":189,"subject":"Async::Task","object_id":3776,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":54,"fiber_id":2792,"pid":54,"subject":"Async::Task","object_id":2800,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":123,"fiber_id":3080,"pid":123,"subject":"Async::Task","object_id":3088,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":171,"fiber_id":3288,"pid":171,"subject":"Async::Task","object_id":3296,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":123,"fiber_id":3096,"pid":123,"subject":"Async::Task","object_id":3104,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":105,"fiber_id":3080,"pid":105,"subject":"Async::Task","object_id":3088,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":54,"fiber_id":2808,"pid":54,"subject":"Async::Task","object_id":2816,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":48,"fiber_id":2696,"pid":48,"subject":"Async::Task","object_id":2704,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":54,"fiber_id":2728,"pid":54,"subject":"Async::Task","object_id":2736,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":30,"fiber_id":2648,"pid":30,"subject":"Async::Task","object_id":2656,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":105,"fiber_id":3096,"pid":105,"subject":"Async::Task","object_id":3104,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":99,"fiber_id":3080,"pid":99,"subject":"Async::Task","object_id":3088,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":54,"fiber_id":2664,"pid":54,"subject":"Async::Task","object_id":2672,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":102,"fiber_id":2984,"pid":102,"subject":"Async::Task","object_id":2992,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":93,"fiber_id":3016,"pid":93,"subject":"Async::Task","object_id":3024,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":126,"fiber_id":3064,"pid":126,"subject":"Async::Task","object_id":3072,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":42,"fiber_id":2392,"pid":42,"subject":"Async::Task","object_id":2400,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":87,"fiber_id":2904,"pid":87,"subject":"Async::Task","object_id":2912,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":174,"fiber_id":3592,"pid":174,"subject":"Async::Task","object_id":3600,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":126,"fiber_id":3080,"pid":126,"subject":"Async::Task","object_id":3088,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":102,"fiber_id":3000,"pid":102,"subject":"Async::Task","object_id":3008,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":75,"fiber_id":2680,"pid":75,"subject":"Async::Task","object_id":2688,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":195,"fiber_id":3896,"pid":195,"subject":"Async::Task","object_id":3904,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":24,"fiber_id":2536,"pid":24,"subject":"Async::Task","object_id":2544,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":87,"fiber_id":2920,"pid":87,"subject":"Async::Task","object_id":2928,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":123,"fiber_id":3112,"pid":123,"subject":"Async::Task","object_id":3120,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":99,"fiber_id":3096,"pid":99,"subject":"Async::Task","object_id":3104,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":141,"fiber_id":3304,"pid":141,"subject":"Async::Task","object_id":3312,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":30,"fiber_id":2664,"pid":30,"subject":"Async::Task","object_id":2672,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":54,"fiber_id":2824,"pid":54,"subject":"Async::Task","object_id":2832,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":123,"fiber_id":3128,"pid":123,"subject":"Async::Task","object_id":3136,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":138,"fiber_id":2968,"pid":138,"subject":"Async::Task","object_id":2976,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":9,"fiber_id":2408,"pid":9,"subject":"Async::Task","object_id":2416,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":63,"fiber_id":2760,"pid":63,"subject":"Async::Task","object_id":2768,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":18,"fiber_id":2696,"pid":18,"subject":"Async::Task","object_id":2704,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":123,"fiber_id":3144,"pid":123,"subject":"Async::Task","object_id":3152,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":177,"fiber_id":3928,"pid":177,"subject":"Async::Task","object_id":3936,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":168,"fiber_id":3592,"pid":168,"subject":"Async::Task","object_id":3600,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":63,"fiber_id":2776,"pid":63,"subject":"Async::Task","object_id":2784,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":150,"fiber_id":3432,"pid":150,"subject":"Async::Task","object_id":3440,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":123,"fiber_id":3160,"pid":123,"subject":"Async::Task","object_id":3168,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":141,"fiber_id":3320,"pid":141,"subject":"Async::Task","object_id":3328,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":168,"fiber_id":3608,"pid":168,"subject":"Async::Task","object_id":3616,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":189,"fiber_id":3784,"pid":189,"subject":"Async::Task","object_id":3792,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":123,"fiber_id":3176,"pid":123,"subject":"Async::Task","object_id":3184,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":126,"fiber_id":3128,"pid":126,"subject":"Async::Task","object_id":3136,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":72,"fiber_id":2760,"pid":72,"subject":"Async::Task","object_id":2768,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":78,"fiber_id":2920,"pid":78,"subject":"Async::Task","object_id":2928,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":123,"fiber_id":3192,"pid":123,"subject":"Async::Task","object_id":3200,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":69,"fiber_id":2552,"pid":69,"subject":"Async::Task","object_id":2560,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":168,"fiber_id":3624,"pid":168,"subject":"Async::Task","object_id":3632,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":105,"fiber_id":3112,"pid":105,"subject":"Async::Task","object_id":3120,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":177,"fiber_id":3944,"pid":177,"subject":"Async::Task","object_id":3952,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":75,"fiber_id":2696,"pid":75,"subject":"Async::Task","object_id":2704,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":30,"fiber_id":2680,"pid":30,"subject":"Async::Task","object_id":2688,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":123,"fiber_id":3208,"pid":123,"subject":"Async::Task","object_id":3216,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":138,"fiber_id":2984,"pid":138,"subject":"Async::Task","object_id":2992,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":156,"fiber_id":3192,"pid":156,"subject":"Async::Task","object_id":3200,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":24,"fiber_id":2552,"pid":24,"subject":"Async::Task","object_id":2560,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":198,"fiber_id":3720,"pid":198,"subject":"Async::Task","object_id":3728,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":102,"fiber_id":3016,"pid":102,"subject":"Async::Task","object_id":3024,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":111,"fiber_id":3096,"pid":111,"subject":"Async::Task","object_id":3104,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":15,"fiber_id":2728,"pid":15,"subject":"Async::Task","object_id":2736,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":21,"fiber_id":2392,"pid":21,"subject":"Async::Task","object_id":2400,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":123,"fiber_id":3224,"pid":123,"subject":"Async::Task","object_id":3232,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":105,"fiber_id":3128,"pid":105,"subject":"Async::Task","object_id":3136,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":87,"fiber_id":2856,"pid":87,"subject":"Async::Task","object_id":2864,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":39,"fiber_id":2712,"pid":39,"subject":"Async::Task","object_id":2720,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":126,"fiber_id":3096,"pid":126,"subject":"Async::Task","object_id":3104,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":123,"fiber_id":3240,"pid":123,"subject":"Async::Task","object_id":3248,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":15,"fiber_id":2744,"pid":15,"subject":"Async::Task","object_id":2752,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":105,"fiber_id":3144,"pid":105,"subject":"Async::Task","object_id":3152,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":165,"fiber_id":3704,"pid":165,"subject":"Async::Task","object_id":3712,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":123,"fiber_id":3256,"pid":123,"subject":"Async::Task","object_id":3264,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":81,"fiber_id":2776,"pid":81,"subject":"Async::Task","object_id":2784,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":105,"fiber_id":3160,"pid":105,"subject":"Async::Task","object_id":3168,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":180,"fiber_id":3768,"pid":180,"subject":"Async::Task","object_id":3776,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":123,"fiber_id":3272,"pid":123,"subject":"Async::Task","object_id":3280,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":177,"fiber_id":3800,"pid":177,"subject":"Async::Task","object_id":3808,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":87,"fiber_id":2936,"pid":87,"subject":"Async::Task","object_id":2944,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":123,"fiber_id":3288,"pid":123,"subject":"Async::Task","object_id":3296,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":72,"fiber_id":2776,"pid":72,"subject":"Async::Task","object_id":2784,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":84,"fiber_id":2680,"pid":84,"subject":"Async::Task","object_id":2688,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":183,"fiber_id":3464,"pid":183,"subject":"Async::Task","object_id":3472,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":123,"fiber_id":3304,"pid":123,"subject":"Async::Task","object_id":3312,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":78,"fiber_id":2936,"pid":78,"subject":"Async::Task","object_id":2944,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":36,"fiber_id":2600,"pid":36,"subject":"Async::Task","object_id":2608,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":75,"fiber_id":2712,"pid":75,"subject":"Async::Task","object_id":2720,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":162,"fiber_id":3480,"pid":162,"subject":"Async::Task","object_id":3488,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":171,"fiber_id":3304,"pid":171,"subject":"Async::Task","object_id":3312,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":75,"fiber_id":2728,"pid":75,"subject":"Async::Task","object_id":2736,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":69,"fiber_id":2568,"pid":69,"subject":"Async::Task","object_id":2576,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":108,"fiber_id":2888,"pid":108,"subject":"Async::Task","object_id":2896,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":123,"fiber_id":3320,"pid":123,"subject":"Async::Task","object_id":3328,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":102,"fiber_id":3032,"pid":102,"subject":"Async::Task","object_id":3040,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":18,"fiber_id":2712,"pid":18,"subject":"Async::Task","object_id":2720,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":180,"fiber_id":3784,"pid":180,"subject":"Async::Task","object_id":3792,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":123,"fiber_id":3336,"pid":123,"subject":"Async::Task","object_id":3344,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":108,"fiber_id":2904,"pid":108,"subject":"Async::Task","object_id":2912,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":87,"fiber_id":2952,"pid":87,"subject":"Async::Task","object_id":2960,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":171,"fiber_id":3320,"pid":171,"subject":"Async::Task","object_id":3328,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":123,"fiber_id":3352,"pid":123,"subject":"Async::Task","object_id":3360,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":144,"fiber_id":2968,"pid":144,"subject":"Async::Task","object_id":2976,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":138,"fiber_id":3000,"pid":138,"subject":"Async::Task","object_id":3008,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":69,"fiber_id":2584,"pid":69,"subject":"Async::Task","object_id":2592,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":153,"fiber_id":3528,"pid":153,"subject":"Async::Task","object_id":3536,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":30,"fiber_id":2696,"pid":30,"subject":"Async::Task","object_id":2704,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":63,"fiber_id":2792,"pid":63,"subject":"Async::Task","object_id":2800,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":123,"fiber_id":3368,"pid":123,"subject":"Async::Task","object_id":3376,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":102,"fiber_id":3048,"pid":102,"subject":"Async::Task","object_id":3056,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":87,"fiber_id":2872,"pid":87,"subject":"Async::Task","object_id":2880,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":87,"fiber_id":2888,"pid":87,"subject":"Async::Task","object_id":2896,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":198,"fiber_id":3736,"pid":198,"subject":"Async::Task","object_id":3744,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":54,"fiber_id":2840,"pid":54,"subject":"Async::Task","object_id":2848,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":177,"fiber_id":3816,"pid":177,"subject":"Async::Task","object_id":3824,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":15,"fiber_id":2760,"pid":15,"subject":"Async::Task","object_id":2768,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":36,"fiber_id":2616,"pid":36,"subject":"Async::Task","object_id":2624,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":183,"fiber_id":3480,"pid":183,"subject":"Async::Task","object_id":3488,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":9,"fiber_id":2424,"pid":9,"subject":"Async::Task","object_id":2432,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":24,"fiber_id":2568,"pid":24,"subject":"Async::Task","object_id":2576,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":150,"fiber_id":3448,"pid":150,"subject":"Async::Task","object_id":3456,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":177,"fiber_id":3832,"pid":177,"subject":"Async::Task","object_id":3840,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":123,"fiber_id":3384,"pid":123,"subject":"Async::Task","object_id":3392,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":198,"fiber_id":3752,"pid":198,"subject":"Async::Task","object_id":3760,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":183,"fiber_id":3496,"pid":183,"subject":"Async::Task","object_id":3504,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":93,"fiber_id":3032,"pid":93,"subject":"Async::Task","object_id":3040,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":138,"fiber_id":3016,"pid":138,"subject":"Async::Task","object_id":3024,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":84,"fiber_id":2696,"pid":84,"subject":"Async::Task","object_id":2704,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":180,"fiber_id":3800,"pid":180,"subject":"Async::Task","object_id":3808,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":57,"fiber_id":2904,"pid":57,"subject":"Async::Task","object_id":2912,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":108,"fiber_id":2920,"pid":108,"subject":"Async::Task","object_id":2928,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":81,"fiber_id":2792,"pid":81,"subject":"Async::Task","object_id":2800,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":105,"fiber_id":3176,"pid":105,"subject":"Async::Task","object_id":3184,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":153,"fiber_id":3544,"pid":153,"subject":"Async::Task","object_id":3552,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":150,"fiber_id":3464,"pid":150,"subject":"Async::Task","object_id":3472,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":18,"fiber_id":2728,"pid":18,"subject":"Async::Task","object_id":2736,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":72,"fiber_id":2792,"pid":72,"subject":"Async::Task","object_id":2800,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":84,"fiber_id":2712,"pid":84,"subject":"Async::Task","object_id":2720,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":117,"fiber_id":3240,"pid":117,"subject":"Async::Task","object_id":3248,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":168,"fiber_id":3640,"pid":168,"subject":"Async::Task","object_id":3648,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":123,"fiber_id":3400,"pid":123,"subject":"Async::Task","object_id":3408,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":177,"fiber_id":3848,"pid":177,"subject":"Async::Task","object_id":3856,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":174,"fiber_id":3608,"pid":174,"subject":"Async::Task","object_id":3616,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":54,"fiber_id":2856,"pid":54,"subject":"Async::Task","object_id":2864,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":180,"fiber_id":3816,"pid":180,"subject":"Async::Task","object_id":3824,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":90,"fiber_id":2888,"pid":90,"subject":"Async::Task","object_id":2896,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":72,"fiber_id":2808,"pid":72,"subject":"Async::Task","object_id":2816,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":159,"fiber_id":3432,"pid":159,"subject":"Async::Task","object_id":3440,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":48,"fiber_id":2712,"pid":48,"subject":"Async::Task","object_id":2720,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":198,"fiber_id":3768,"pid":198,"subject":"Async::Task","object_id":3776,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":156,"fiber_id":3208,"pid":156,"subject":"Async::Task","object_id":3216,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":165,"fiber_id":3720,"pid":165,"subject":"Async::Task","object_id":3728,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":18,"fiber_id":2744,"pid":18,"subject":"Async::Task","object_id":2752,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":138,"fiber_id":3032,"pid":138,"subject":"Async::Task","object_id":3040,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":12,"fiber_id":2696,"pid":12,"subject":"Async::Task","object_id":2704,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":90,"fiber_id":2904,"pid":90,"subject":"Async::Task","object_id":2912,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":30,"fiber_id":2712,"pid":30,"subject":"Async::Task","object_id":2720,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":69,"fiber_id":2600,"pid":69,"subject":"Async::Task","object_id":2608,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":111,"fiber_id":3112,"pid":111,"subject":"Async::Task","object_id":3120,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":174,"fiber_id":3624,"pid":174,"subject":"Async::Task","object_id":3632,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":93,"fiber_id":3048,"pid":93,"subject":"Async::Task","object_id":3056,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":183,"fiber_id":3512,"pid":183,"subject":"Async::Task","object_id":3520,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":81,"fiber_id":2808,"pid":81,"subject":"Async::Task","object_id":2816,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":180,"fiber_id":3832,"pid":180,"subject":"Async::Task","object_id":3840,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":174,"fiber_id":3640,"pid":174,"subject":"Async::Task","object_id":3648,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":87,"fiber_id":2968,"pid":87,"subject":"Async::Task","object_id":2976,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":9,"fiber_id":2440,"pid":9,"subject":"Async::Task","object_id":2448,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":162,"fiber_id":3496,"pid":162,"subject":"Async::Task","object_id":3504,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":153,"fiber_id":3560,"pid":153,"subject":"Async::Task","object_id":3568,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":141,"fiber_id":3336,"pid":141,"subject":"Async::Task","object_id":3344,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":177,"fiber_id":3864,"pid":177,"subject":"Async::Task","object_id":3872,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":117,"fiber_id":3256,"pid":117,"subject":"Async::Task","object_id":3264,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":30,"fiber_id":2728,"pid":30,"subject":"Async::Task","object_id":2736,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":18,"fiber_id":2760,"pid":18,"subject":"Async::Task","object_id":2768,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":9,"fiber_id":2456,"pid":9,"subject":"Async::Task","object_id":2464,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":177,"fiber_id":3880,"pid":177,"subject":"Async::Task","object_id":3888,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":117,"fiber_id":3272,"pid":117,"subject":"Async::Task","object_id":3280,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":30,"fiber_id":2744,"pid":30,"subject":"Async::Task","object_id":2752,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":9,"fiber_id":2472,"pid":9,"subject":"Async::Task","object_id":2480,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":117,"fiber_id":3288,"pid":117,"subject":"Async::Task","object_id":3296,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":99,"fiber_id":3112,"pid":99,"subject":"Async::Task","object_id":3120,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":72,"fiber_id":2824,"pid":72,"subject":"Async::Task","object_id":2832,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":147,"fiber_id":3256,"pid":147,"subject":"Async::Task","object_id":3264,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":36,"fiber_id":2632,"pid":36,"subject":"Async::Task","object_id":2640,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":84,"fiber_id":2728,"pid":84,"subject":"Async::Task","object_id":2736,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":117,"fiber_id":3304,"pid":117,"subject":"Async::Task","object_id":3312,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":177,"fiber_id":3896,"pid":177,"subject":"Async::Task","object_id":3904,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":99,"fiber_id":3128,"pid":99,"subject":"Async::Task","object_id":3136,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":156,"fiber_id":3224,"pid":156,"subject":"Async::Task","object_id":3232,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":99,"fiber_id":3144,"pid":99,"subject":"Async::Task","object_id":3152,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":123,"fiber_id":3416,"pid":123,"subject":"Async::Task","object_id":3424,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":162,"fiber_id":3512,"pid":162,"subject":"Async::Task","object_id":3520,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":144,"fiber_id":2984,"pid":144,"subject":"Async::Task","object_id":2992,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":147,"fiber_id":3272,"pid":147,"subject":"Async::Task","object_id":3280,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":123,"fiber_id":3432,"pid":123,"subject":"Async::Task","object_id":3440,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":177,"fiber_id":3912,"pid":177,"subject":"Async::Task","object_id":3920,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":87,"fiber_id":2984,"pid":87,"subject":"Async::Task","object_id":2992,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":90,"fiber_id":2920,"pid":90,"subject":"Async::Task","object_id":2928,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":105,"fiber_id":3192,"pid":105,"subject":"Async::Task","object_id":3200,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":144,"fiber_id":3000,"pid":144,"subject":"Async::Task","object_id":3008,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":153,"fiber_id":3576,"pid":153,"subject":"Async::Task","object_id":3584,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":90,"fiber_id":2936,"pid":90,"subject":"Async::Task","object_id":2944,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":78,"fiber_id":2952,"pid":78,"subject":"Async::Task","object_id":2960,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":39,"fiber_id":2728,"pid":39,"subject":"Async::Task","object_id":2736,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":90,"fiber_id":2952,"pid":90,"subject":"Async::Task","object_id":2960,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":9,"fiber_id":2488,"pid":9,"subject":"Async::Task","object_id":2496,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":18,"fiber_id":2776,"pid":18,"subject":"Async::Task","object_id":2784,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":78,"fiber_id":2968,"pid":78,"subject":"Async::Task","object_id":2976,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":18,"fiber_id":2792,"pid":18,"subject":"Async::Task","object_id":2800,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":48,"fiber_id":2728,"pid":48,"subject":"Async::Task","object_id":2736,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":78,"fiber_id":2984,"pid":78,"subject":"Async::Task","object_id":2992,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":48,"fiber_id":2744,"pid":48,"subject":"Async::Task","object_id":2752,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":9,"fiber_id":2504,"pid":9,"subject":"Async::Task","object_id":2512,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":87,"fiber_id":3000,"pid":87,"subject":"Async::Task","object_id":3008,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":108,"fiber_id":2936,"pid":108,"subject":"Async::Task","object_id":2944,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":18,"fiber_id":2808,"pid":18,"subject":"Async::Task","object_id":2816,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":15,"fiber_id":2776,"pid":15,"subject":"Async::Task","object_id":2784,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":9,"fiber_id":2520,"pid":9,"subject":"Async::Task","object_id":2528,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":78,"fiber_id":3000,"pid":78,"subject":"Async::Task","object_id":3008,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":156,"fiber_id":3240,"pid":156,"subject":"Async::Task","object_id":3248,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":48,"fiber_id":2760,"pid":48,"subject":"Async::Task","object_id":2768,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":48,"fiber_id":2776,"pid":48,"subject":"Async::Task","object_id":2784,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":123,"fiber_id":3448,"pid":123,"subject":"Async::Task","object_id":3456,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":15,"fiber_id":2792,"pid":15,"subject":"Async::Task","object_id":2800,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":18,"fiber_id":2824,"pid":18,"subject":"Async::Task","object_id":2832,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":9,"fiber_id":2536,"pid":9,"subject":"Async::Task","object_id":2544,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":9,"fiber_id":2552,"pid":9,"subject":"Async::Task","object_id":2560,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":18,"fiber_id":2840,"pid":18,"subject":"Async::Task","object_id":2848,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":15,"fiber_id":2808,"pid":15,"subject":"Async::Task","object_id":2816,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":18,"fiber_id":2856,"pid":18,"subject":"Async::Task","object_id":2864,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":123,"fiber_id":3464,"pid":123,"subject":"Async::Task","object_id":3472,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":18,"fiber_id":2872,"pid":18,"subject":"Async::Task","object_id":2880,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":18,"fiber_id":2888,"pid":18,"subject":"Async::Task","object_id":2896,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":9,"fiber_id":2568,"pid":9,"subject":"Async::Task","object_id":2576,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":18,"fiber_id":2904,"pid":18,"subject":"Async::Task","object_id":2912,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":15,"fiber_id":2824,"pid":15,"subject":"Async::Task","object_id":2832,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":15,"fiber_id":2840,"pid":15,"subject":"Async::Task","object_id":2848,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":15,"fiber_id":2856,"pid":15,"subject":"Async::Task","object_id":2864,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} -{"time":"2026-09-02T11:16:34+00:00","severity":"warn","process_id":15,"fiber_id":2872,"pid":15,"subject":"Async::Task","object_id":2880,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +06:27+00:00","severity":"warn","process_id":195,"fiber_id":2920,"pid":195,"subject":"Async::Task","object_id":2928,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":198,"fiber_id":3000,"pid":198,"subject":"Async::Task","object_id":3008,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":78,"fiber_id":2408,"pid":78,"subject":"Async::Task","object_id":2416,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":180,"fiber_id":2776,"pid":180,"subject":"Async::Task","object_id":2784,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":123,"fiber_id":2280,"pid":123,"subject":"Async::Task","object_id":2288,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":129,"fiber_id":2168,"pid":129,"subject":"Async::Task","object_id":2176,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":150,"fiber_id":2504,"pid":150,"subject":"Async::Task","object_id":2512,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":189,"fiber_id":3384,"pid":189,"subject":"Async::Task","object_id":3392,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":96,"fiber_id":2168,"pid":96,"subject":"Async::Task","object_id":2176,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":72,"fiber_id":2168,"pid":72,"subject":"Async::Task","object_id":2176,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":81,"fiber_id":2072,"pid":81,"subject":"Async::Task","object_id":2080,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":57,"fiber_id":1656,"pid":57,"subject":"Async::Task","object_id":1664,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":66,"fiber_id":2024,"pid":66,"subject":"Async::Task","object_id":2032,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":33,"fiber_id":1880,"pid":33,"subject":"Async::Task","object_id":1888,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":126,"fiber_id":2456,"pid":126,"subject":"Async::Task","object_id":2464,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":21,"fiber_id":1800,"pid":21,"subject":"Async::Task","object_id":1808,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":90,"fiber_id":2232,"pid":90,"subject":"Async::Task","object_id":2240,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":171,"fiber_id":2888,"pid":171,"subject":"Async::Task","object_id":2896,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":36,"fiber_id":1944,"pid":36,"subject":"Async::Task","object_id":1952,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":93,"fiber_id":2328,"pid":93,"subject":"Async::Task","object_id":2336,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":120,"fiber_id":2264,"pid":120,"subject":"Async::Task","object_id":2272,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":87,"fiber_id":2088,"pid":87,"subject":"Async::Task","object_id":2096,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":183,"fiber_id":2696,"pid":183,"subject":"Async::Task","object_id":2704,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":81,"fiber_id":2088,"pid":81,"subject":"Async::Task","object_id":2096,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":72,"fiber_id":2184,"pid":72,"subject":"Async::Task","object_id":2192,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":54,"fiber_id":2056,"pid":54,"subject":"Async::Task","object_id":2064,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":129,"fiber_id":2184,"pid":129,"subject":"Async::Task","object_id":2192,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":12,"fiber_id":1576,"pid":12,"subject":"Async::Task","object_id":1584,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":150,"fiber_id":2520,"pid":150,"subject":"Async::Task","object_id":2528,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":141,"fiber_id":2696,"pid":141,"subject":"Async::Task","object_id":2704,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":48,"fiber_id":2008,"pid":48,"subject":"Async::Task","object_id":2016,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":90,"fiber_id":2248,"pid":90,"subject":"Async::Task","object_id":2256,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":162,"fiber_id":2728,"pid":162,"subject":"Async::Task","object_id":2736,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":135,"fiber_id":2456,"pid":135,"subject":"Async::Task","object_id":2464,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":81,"fiber_id":2104,"pid":81,"subject":"Async::Task","object_id":2112,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":60,"fiber_id":2104,"pid":60,"subject":"Async::Task","object_id":2112,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":141,"fiber_id":2712,"pid":141,"subject":"Async::Task","object_id":2720,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":165,"fiber_id":2712,"pid":165,"subject":"Async::Task","object_id":2720,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":135,"fiber_id":2472,"pid":135,"subject":"Async::Task","object_id":2480,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":195,"fiber_id":2936,"pid":195,"subject":"Async::Task","object_id":2944,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":54,"fiber_id":2072,"pid":54,"subject":"Async::Task","object_id":2080,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":189,"fiber_id":3400,"pid":189,"subject":"Async::Task","object_id":3408,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":39,"fiber_id":1928,"pid":39,"subject":"Async::Task","object_id":1936,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":12,"fiber_id":1592,"pid":12,"subject":"Async::Task","object_id":1600,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":33,"fiber_id":1896,"pid":33,"subject":"Async::Task","object_id":1904,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":81,"fiber_id":2120,"pid":81,"subject":"Async::Task","object_id":2128,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":75,"fiber_id":2120,"pid":75,"subject":"Async::Task","object_id":2128,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":93,"fiber_id":2344,"pid":93,"subject":"Async::Task","object_id":2352,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":189,"fiber_id":3416,"pid":189,"subject":"Async::Task","object_id":3424,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":165,"fiber_id":2728,"pid":165,"subject":"Async::Task","object_id":2736,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":9,"fiber_id":1816,"pid":9,"subject":"Async::Task","object_id":1824,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":54,"fiber_id":2088,"pid":54,"subject":"Async::Task","object_id":2096,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":45,"fiber_id":1912,"pid":45,"subject":"Async::Task","object_id":1920,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":21,"fiber_id":1816,"pid":21,"subject":"Async::Task","object_id":1824,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":48,"fiber_id":2024,"pid":48,"subject":"Async::Task","object_id":2032,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":39,"fiber_id":1944,"pid":39,"subject":"Async::Task","object_id":1952,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":189,"fiber_id":3432,"pid":189,"subject":"Async::Task","object_id":3440,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":108,"fiber_id":2264,"pid":108,"subject":"Async::Task","object_id":2272,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":87,"fiber_id":2104,"pid":87,"subject":"Async::Task","object_id":2112,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":18,"fiber_id":1784,"pid":18,"subject":"Async::Task","object_id":1792,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":78,"fiber_id":2424,"pid":78,"subject":"Async::Task","object_id":2432,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":189,"fiber_id":3448,"pid":189,"subject":"Async::Task","object_id":3456,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":186,"fiber_id":2888,"pid":186,"subject":"Async::Task","object_id":2896,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":174,"fiber_id":2856,"pid":174,"subject":"Async::Task","object_id":2864,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":42,"fiber_id":1976,"pid":42,"subject":"Async::Task","object_id":1984,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":81,"fiber_id":2136,"pid":81,"subject":"Async::Task","object_id":2144,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":87,"fiber_id":2120,"pid":87,"subject":"Async::Task","object_id":2128,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":159,"fiber_id":2568,"pid":159,"subject":"Async::Task","object_id":2576,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":72,"fiber_id":2200,"pid":72,"subject":"Async::Task","object_id":2208,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":96,"fiber_id":2184,"pid":96,"subject":"Async::Task","object_id":2192,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":177,"fiber_id":2968,"pid":177,"subject":"Async::Task","object_id":2976,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":45,"fiber_id":1928,"pid":45,"subject":"Async::Task","object_id":1936,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":168,"fiber_id":2808,"pid":168,"subject":"Async::Task","object_id":2816,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":126,"fiber_id":2472,"pid":126,"subject":"Async::Task","object_id":2480,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":195,"fiber_id":2952,"pid":195,"subject":"Async::Task","object_id":2960,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":81,"fiber_id":2152,"pid":81,"subject":"Async::Task","object_id":2160,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":72,"fiber_id":2216,"pid":72,"subject":"Async::Task","object_id":2224,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":18,"fiber_id":1800,"pid":18,"subject":"Async::Task","object_id":1808,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":195,"fiber_id":2968,"pid":195,"subject":"Async::Task","object_id":2976,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":96,"fiber_id":2200,"pid":96,"subject":"Async::Task","object_id":2208,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":57,"fiber_id":1672,"pid":57,"subject":"Async::Task","object_id":1680,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":51,"fiber_id":2040,"pid":51,"subject":"Async::Task","object_id":2048,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":9,"fiber_id":1832,"pid":9,"subject":"Async::Task","object_id":1840,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":180,"fiber_id":2792,"pid":180,"subject":"Async::Task","object_id":2800,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":102,"fiber_id":2264,"pid":102,"subject":"Async::Task","object_id":2272,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":39,"fiber_id":1960,"pid":39,"subject":"Async::Task","object_id":1968,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":120,"fiber_id":2280,"pid":120,"subject":"Async::Task","object_id":2288,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":87,"fiber_id":2136,"pid":87,"subject":"Async::Task","object_id":2144,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":129,"fiber_id":2200,"pid":129,"subject":"Async::Task","object_id":2208,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":57,"fiber_id":1688,"pid":57,"subject":"Async::Task","object_id":1696,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":114,"fiber_id":2408,"pid":114,"subject":"Async::Task","object_id":2416,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":54,"fiber_id":2104,"pid":54,"subject":"Async::Task","object_id":2112,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":60,"fiber_id":2120,"pid":60,"subject":"Async::Task","object_id":2128,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":48,"fiber_id":2040,"pid":48,"subject":"Async::Task","object_id":2048,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":9,"fiber_id":1848,"pid":9,"subject":"Async::Task","object_id":1856,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":135,"fiber_id":2488,"pid":135,"subject":"Async::Task","object_id":2496,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":30,"fiber_id":1848,"pid":30,"subject":"Async::Task","object_id":1856,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":18,"fiber_id":1816,"pid":18,"subject":"Async::Task","object_id":1824,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":54,"fiber_id":2120,"pid":54,"subject":"Async::Task","object_id":2128,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":60,"fiber_id":2136,"pid":60,"subject":"Async::Task","object_id":2144,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":63,"fiber_id":1944,"pid":63,"subject":"Async::Task","object_id":1952,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":45,"fiber_id":1944,"pid":45,"subject":"Async::Task","object_id":1952,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":132,"fiber_id":2488,"pid":132,"subject":"Async::Task","object_id":2496,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":165,"fiber_id":2744,"pid":165,"subject":"Async::Task","object_id":2752,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":9,"fiber_id":1864,"pid":9,"subject":"Async::Task","object_id":1872,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":66,"fiber_id":2040,"pid":66,"subject":"Async::Task","object_id":2048,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":51,"fiber_id":2056,"pid":51,"subject":"Async::Task","object_id":2064,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":186,"fiber_id":2904,"pid":186,"subject":"Async::Task","object_id":2912,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":156,"fiber_id":2632,"pid":156,"subject":"Async::Task","object_id":2640,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":57,"fiber_id":1704,"pid":57,"subject":"Async::Task","object_id":1712,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":138,"fiber_id":2568,"pid":138,"subject":"Async::Task","object_id":2576,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":171,"fiber_id":2904,"pid":171,"subject":"Async::Task","object_id":2912,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":198,"fiber_id":3016,"pid":198,"subject":"Async::Task","object_id":3024,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":51,"fiber_id":2072,"pid":51,"subject":"Async::Task","object_id":2080,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":174,"fiber_id":2872,"pid":174,"subject":"Async::Task","object_id":2880,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":120,"fiber_id":2296,"pid":120,"subject":"Async::Task","object_id":2304,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":129,"fiber_id":2216,"pid":129,"subject":"Async::Task","object_id":2224,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":144,"fiber_id":2664,"pid":144,"subject":"Async::Task","object_id":2672,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":189,"fiber_id":3464,"pid":189,"subject":"Async::Task","object_id":3472,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":45,"fiber_id":1960,"pid":45,"subject":"Async::Task","object_id":1968,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":33,"fiber_id":1912,"pid":33,"subject":"Async::Task","object_id":1920,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":24,"fiber_id":1576,"pid":24,"subject":"Async::Task","object_id":1584,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":177,"fiber_id":2984,"pid":177,"subject":"Async::Task","object_id":2992,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":141,"fiber_id":2728,"pid":141,"subject":"Async::Task","object_id":2736,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":54,"fiber_id":2136,"pid":54,"subject":"Async::Task","object_id":2144,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":57,"fiber_id":1720,"pid":57,"subject":"Async::Task","object_id":1728,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":48,"fiber_id":2056,"pid":48,"subject":"Async::Task","object_id":2064,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":150,"fiber_id":2536,"pid":150,"subject":"Async::Task","object_id":2544,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":111,"fiber_id":2312,"pid":111,"subject":"Async::Task","object_id":2320,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":30,"fiber_id":1864,"pid":30,"subject":"Async::Task","object_id":1872,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":171,"fiber_id":2920,"pid":171,"subject":"Async::Task","object_id":2928,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":198,"fiber_id":3032,"pid":198,"subject":"Async::Task","object_id":3040,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":78,"fiber_id":2440,"pid":78,"subject":"Async::Task","object_id":2448,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":48,"fiber_id":2072,"pid":48,"subject":"Async::Task","object_id":2080,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":54,"fiber_id":2152,"pid":54,"subject":"Async::Task","object_id":2160,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":144,"fiber_id":2680,"pid":144,"subject":"Async::Task","object_id":2688,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":39,"fiber_id":1976,"pid":39,"subject":"Async::Task","object_id":1984,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":192,"fiber_id":3032,"pid":192,"subject":"Async::Task","object_id":3040,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":60,"fiber_id":2152,"pid":60,"subject":"Async::Task","object_id":2160,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":174,"fiber_id":2888,"pid":174,"subject":"Async::Task","object_id":2896,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":102,"fiber_id":2280,"pid":102,"subject":"Async::Task","object_id":2288,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":114,"fiber_id":2424,"pid":114,"subject":"Async::Task","object_id":2432,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":90,"fiber_id":2264,"pid":90,"subject":"Async::Task","object_id":2272,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":111,"fiber_id":2328,"pid":111,"subject":"Async::Task","object_id":2336,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":150,"fiber_id":2552,"pid":150,"subject":"Async::Task","object_id":2560,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":129,"fiber_id":2232,"pid":129,"subject":"Async::Task","object_id":2240,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":96,"fiber_id":2216,"pid":96,"subject":"Async::Task","object_id":2224,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":57,"fiber_id":1736,"pid":57,"subject":"Async::Task","object_id":1744,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":111,"fiber_id":2344,"pid":111,"subject":"Async::Task","object_id":2352,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":81,"fiber_id":2168,"pid":81,"subject":"Async::Task","object_id":2176,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":153,"fiber_id":2568,"pid":153,"subject":"Async::Task","object_id":2576,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":105,"fiber_id":2152,"pid":105,"subject":"Async::Task","object_id":2160,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":114,"fiber_id":2440,"pid":114,"subject":"Async::Task","object_id":2448,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":57,"fiber_id":1752,"pid":57,"subject":"Async::Task","object_id":1760,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":177,"fiber_id":3000,"pid":177,"subject":"Async::Task","object_id":3008,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":195,"fiber_id":2984,"pid":195,"subject":"Async::Task","object_id":2992,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":159,"fiber_id":2584,"pid":159,"subject":"Async::Task","object_id":2592,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":93,"fiber_id":2360,"pid":93,"subject":"Async::Task","object_id":2368,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":180,"fiber_id":2808,"pid":180,"subject":"Async::Task","object_id":2816,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":135,"fiber_id":2504,"pid":135,"subject":"Async::Task","object_id":2512,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":138,"fiber_id":2584,"pid":138,"subject":"Async::Task","object_id":2592,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":159,"fiber_id":2600,"pid":159,"subject":"Async::Task","object_id":2608,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":57,"fiber_id":1768,"pid":57,"subject":"Async::Task","object_id":1776,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":102,"fiber_id":2296,"pid":102,"subject":"Async::Task","object_id":2304,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":156,"fiber_id":2648,"pid":156,"subject":"Async::Task","object_id":2656,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":123,"fiber_id":2296,"pid":123,"subject":"Async::Task","object_id":2304,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":162,"fiber_id":2744,"pid":162,"subject":"Async::Task","object_id":2752,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":135,"fiber_id":2520,"pid":135,"subject":"Async::Task","object_id":2528,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":33,"fiber_id":1928,"pid":33,"subject":"Async::Task","object_id":1936,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":12,"fiber_id":1608,"pid":12,"subject":"Async::Task","object_id":1616,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":180,"fiber_id":2824,"pid":180,"subject":"Async::Task","object_id":2832,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":195,"fiber_id":3000,"pid":195,"subject":"Async::Task","object_id":3008,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":30,"fiber_id":1880,"pid":30,"subject":"Async::Task","object_id":1888,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":150,"fiber_id":2568,"pid":150,"subject":"Async::Task","object_id":2576,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":12,"fiber_id":1624,"pid":12,"subject":"Async::Task","object_id":1632,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":174,"fiber_id":2904,"pid":174,"subject":"Async::Task","object_id":2912,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":189,"fiber_id":3480,"pid":189,"subject":"Async::Task","object_id":3488,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":51,"fiber_id":2088,"pid":51,"subject":"Async::Task","object_id":2096,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":162,"fiber_id":2760,"pid":162,"subject":"Async::Task","object_id":2768,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":159,"fiber_id":2616,"pid":159,"subject":"Async::Task","object_id":2624,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":150,"fiber_id":2584,"pid":150,"subject":"Async::Task","object_id":2592,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":81,"fiber_id":2184,"pid":81,"subject":"Async::Task","object_id":2192,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":63,"fiber_id":1960,"pid":63,"subject":"Async::Task","object_id":1968,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":147,"fiber_id":2552,"pid":147,"subject":"Async::Task","object_id":2560,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":153,"fiber_id":2584,"pid":153,"subject":"Async::Task","object_id":2592,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":18,"fiber_id":1832,"pid":18,"subject":"Async::Task","object_id":1840,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":117,"fiber_id":2248,"pid":117,"subject":"Async::Task","object_id":2256,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":144,"fiber_id":2696,"pid":144,"subject":"Async::Task","object_id":2704,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":189,"fiber_id":3496,"pid":189,"subject":"Async::Task","object_id":3504,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":21,"fiber_id":1832,"pid":21,"subject":"Async::Task","object_id":1840,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":123,"fiber_id":2312,"pid":123,"subject":"Async::Task","object_id":2320,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":36,"fiber_id":1960,"pid":36,"subject":"Async::Task","object_id":1968,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":78,"fiber_id":2456,"pid":78,"subject":"Async::Task","object_id":2464,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":63,"fiber_id":1976,"pid":63,"subject":"Async::Task","object_id":1984,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":54,"fiber_id":2168,"pid":54,"subject":"Async::Task","object_id":2176,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":165,"fiber_id":2760,"pid":165,"subject":"Async::Task","object_id":2768,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":39,"fiber_id":1992,"pid":39,"subject":"Async::Task","object_id":2000,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":12,"fiber_id":1640,"pid":12,"subject":"Async::Task","object_id":1648,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":147,"fiber_id":2568,"pid":147,"subject":"Async::Task","object_id":2576,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":156,"fiber_id":2664,"pid":156,"subject":"Async::Task","object_id":2672,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":54,"fiber_id":2184,"pid":54,"subject":"Async::Task","object_id":2192,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":9,"fiber_id":1880,"pid":9,"subject":"Async::Task","object_id":1888,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":15,"fiber_id":1432,"pid":15,"subject":"Async::Task","object_id":1440,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":21,"fiber_id":1848,"pid":21,"subject":"Async::Task","object_id":1856,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":141,"fiber_id":2744,"pid":141,"subject":"Async::Task","object_id":2752,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":39,"fiber_id":2008,"pid":39,"subject":"Async::Task","object_id":2016,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":75,"fiber_id":2136,"pid":75,"subject":"Async::Task","object_id":2144,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":111,"fiber_id":2360,"pid":111,"subject":"Async::Task","object_id":2368,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":117,"fiber_id":2264,"pid":117,"subject":"Async::Task","object_id":2272,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":156,"fiber_id":2680,"pid":156,"subject":"Async::Task","object_id":2688,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":126,"fiber_id":2488,"pid":126,"subject":"Async::Task","object_id":2496,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":24,"fiber_id":1592,"pid":24,"subject":"Async::Task","object_id":1600,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":81,"fiber_id":2200,"pid":81,"subject":"Async::Task","object_id":2208,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":18,"fiber_id":1848,"pid":18,"subject":"Async::Task","object_id":1856,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":186,"fiber_id":2920,"pid":186,"subject":"Async::Task","object_id":2928,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":81,"fiber_id":2216,"pid":81,"subject":"Async::Task","object_id":2224,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":132,"fiber_id":2504,"pid":132,"subject":"Async::Task","object_id":2512,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":162,"fiber_id":2776,"pid":162,"subject":"Async::Task","object_id":2784,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":36,"fiber_id":1976,"pid":36,"subject":"Async::Task","object_id":1984,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":21,"fiber_id":1864,"pid":21,"subject":"Async::Task","object_id":1872,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":174,"fiber_id":2920,"pid":174,"subject":"Async::Task","object_id":2928,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":180,"fiber_id":2840,"pid":180,"subject":"Async::Task","object_id":2848,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":111,"fiber_id":2376,"pid":111,"subject":"Async::Task","object_id":2384,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":99,"fiber_id":2200,"pid":99,"subject":"Async::Task","object_id":2208,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":195,"fiber_id":3016,"pid":195,"subject":"Async::Task","object_id":3024,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":168,"fiber_id":2824,"pid":168,"subject":"Async::Task","object_id":2832,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":21,"fiber_id":1880,"pid":21,"subject":"Async::Task","object_id":1888,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":81,"fiber_id":2232,"pid":81,"subject":"Async::Task","object_id":2240,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":12,"fiber_id":1656,"pid":12,"subject":"Async::Task","object_id":1664,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":96,"fiber_id":2232,"pid":96,"subject":"Async::Task","object_id":2240,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":48,"fiber_id":2088,"pid":48,"subject":"Async::Task","object_id":2096,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":21,"fiber_id":1896,"pid":21,"subject":"Async::Task","object_id":1904,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":102,"fiber_id":2312,"pid":102,"subject":"Async::Task","object_id":2320,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":198,"fiber_id":3048,"pid":198,"subject":"Async::Task","object_id":3056,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":111,"fiber_id":2392,"pid":111,"subject":"Async::Task","object_id":2400,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":75,"fiber_id":2152,"pid":75,"subject":"Async::Task","object_id":2160,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":186,"fiber_id":2936,"pid":186,"subject":"Async::Task","object_id":2944,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":180,"fiber_id":2856,"pid":180,"subject":"Async::Task","object_id":2864,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":39,"fiber_id":2024,"pid":39,"subject":"Async::Task","object_id":2032,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":63,"fiber_id":1992,"pid":63,"subject":"Async::Task","object_id":2000,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":12,"fiber_id":1672,"pid":12,"subject":"Async::Task","object_id":1680,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":42,"fiber_id":1992,"pid":42,"subject":"Async::Task","object_id":2000,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":66,"fiber_id":2056,"pid":66,"subject":"Async::Task","object_id":2064,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":144,"fiber_id":2712,"pid":144,"subject":"Async::Task","object_id":2720,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":60,"fiber_id":2168,"pid":60,"subject":"Async::Task","object_id":2176,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":81,"fiber_id":2248,"pid":81,"subject":"Async::Task","object_id":2256,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":45,"fiber_id":1976,"pid":45,"subject":"Async::Task","object_id":1984,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":42,"fiber_id":2008,"pid":42,"subject":"Async::Task","object_id":2016,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":195,"fiber_id":3032,"pid":195,"subject":"Async::Task","object_id":3040,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":57,"fiber_id":1784,"pid":57,"subject":"Async::Task","object_id":1792,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":102,"fiber_id":2328,"pid":102,"subject":"Async::Task","object_id":2336,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":54,"fiber_id":2200,"pid":54,"subject":"Async::Task","object_id":2208,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":69,"fiber_id":1720,"pid":69,"subject":"Async::Task","object_id":1728,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":111,"fiber_id":2408,"pid":111,"subject":"Async::Task","object_id":2416,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":114,"fiber_id":2456,"pid":114,"subject":"Async::Task","object_id":2464,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":159,"fiber_id":2632,"pid":159,"subject":"Async::Task","object_id":2640,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":66,"fiber_id":2072,"pid":66,"subject":"Async::Task","object_id":2080,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":144,"fiber_id":2728,"pid":144,"subject":"Async::Task","object_id":2736,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":15,"fiber_id":1448,"pid":15,"subject":"Async::Task","object_id":1456,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":117,"fiber_id":2280,"pid":117,"subject":"Async::Task","object_id":2288,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":57,"fiber_id":1800,"pid":57,"subject":"Async::Task","object_id":1808,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":162,"fiber_id":2792,"pid":162,"subject":"Async::Task","object_id":2800,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":111,"fiber_id":2424,"pid":111,"subject":"Async::Task","object_id":2432,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":45,"fiber_id":1992,"pid":45,"subject":"Async::Task","object_id":2000,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":108,"fiber_id":2280,"pid":108,"subject":"Async::Task","object_id":2288,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":135,"fiber_id":2536,"pid":135,"subject":"Async::Task","object_id":2544,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":51,"fiber_id":2104,"pid":51,"subject":"Async::Task","object_id":2112,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":156,"fiber_id":2696,"pid":156,"subject":"Async::Task","object_id":2704,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":15,"fiber_id":1464,"pid":15,"subject":"Async::Task","object_id":1472,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":21,"fiber_id":1912,"pid":21,"subject":"Async::Task","object_id":1920,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":126,"fiber_id":2504,"pid":126,"subject":"Async::Task","object_id":2512,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":195,"fiber_id":3048,"pid":195,"subject":"Async::Task","object_id":3056,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":9,"fiber_id":1896,"pid":9,"subject":"Async::Task","object_id":1904,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":108,"fiber_id":2296,"pid":108,"subject":"Async::Task","object_id":2304,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":138,"fiber_id":2600,"pid":138,"subject":"Async::Task","object_id":2608,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":36,"fiber_id":1992,"pid":36,"subject":"Async::Task","object_id":2000,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":54,"fiber_id":2216,"pid":54,"subject":"Async::Task","object_id":2224,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":144,"fiber_id":2744,"pid":144,"subject":"Async::Task","object_id":2752,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":15,"fiber_id":1480,"pid":15,"subject":"Async::Task","object_id":1488,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":159,"fiber_id":2648,"pid":159,"subject":"Async::Task","object_id":2656,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":93,"fiber_id":2376,"pid":93,"subject":"Async::Task","object_id":2384,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":183,"fiber_id":2712,"pid":183,"subject":"Async::Task","object_id":2720,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":36,"fiber_id":2008,"pid":36,"subject":"Async::Task","object_id":2016,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":138,"fiber_id":2616,"pid":138,"subject":"Async::Task","object_id":2624,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":39,"fiber_id":2040,"pid":39,"subject":"Async::Task","object_id":2048,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":189,"fiber_id":3512,"pid":189,"subject":"Async::Task","object_id":3520,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":15,"fiber_id":1496,"pid":15,"subject":"Async::Task","object_id":1504,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":132,"fiber_id":2520,"pid":132,"subject":"Async::Task","object_id":2528,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":186,"fiber_id":2952,"pid":186,"subject":"Async::Task","object_id":2960,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":72,"fiber_id":2232,"pid":72,"subject":"Async::Task","object_id":2240,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":198,"fiber_id":3064,"pid":198,"subject":"Async::Task","object_id":3072,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":114,"fiber_id":2472,"pid":114,"subject":"Async::Task","object_id":2480,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":45,"fiber_id":2008,"pid":45,"subject":"Async::Task","object_id":2016,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":15,"fiber_id":1512,"pid":15,"subject":"Async::Task","object_id":1520,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":9,"fiber_id":1912,"pid":9,"subject":"Async::Task","object_id":1920,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":48,"fiber_id":2104,"pid":48,"subject":"Async::Task","object_id":2112,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":24,"fiber_id":1608,"pid":24,"subject":"Async::Task","object_id":1616,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":180,"fiber_id":2872,"pid":180,"subject":"Async::Task","object_id":2880,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":57,"fiber_id":1816,"pid":57,"subject":"Async::Task","object_id":1824,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":84,"fiber_id":2136,"pid":84,"subject":"Async::Task","object_id":2144,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":162,"fiber_id":2808,"pid":162,"subject":"Async::Task","object_id":2816,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":72,"fiber_id":2248,"pid":72,"subject":"Async::Task","object_id":2256,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":186,"fiber_id":2968,"pid":186,"subject":"Async::Task","object_id":2976,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":63,"fiber_id":2008,"pid":63,"subject":"Async::Task","object_id":2016,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":60,"fiber_id":2184,"pid":60,"subject":"Async::Task","object_id":2192,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":105,"fiber_id":2168,"pid":105,"subject":"Async::Task","object_id":2176,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":195,"fiber_id":3064,"pid":195,"subject":"Async::Task","object_id":3072,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":87,"fiber_id":2152,"pid":87,"subject":"Async::Task","object_id":2160,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":114,"fiber_id":2488,"pid":114,"subject":"Async::Task","object_id":2496,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":42,"fiber_id":2024,"pid":42,"subject":"Async::Task","object_id":2032,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":78,"fiber_id":2472,"pid":78,"subject":"Async::Task","object_id":2480,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":15,"fiber_id":1528,"pid":15,"subject":"Async::Task","object_id":1536,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":21,"fiber_id":1928,"pid":21,"subject":"Async::Task","object_id":1936,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":144,"fiber_id":2760,"pid":144,"subject":"Async::Task","object_id":2768,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":132,"fiber_id":2536,"pid":132,"subject":"Async::Task","object_id":2544,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":195,"fiber_id":3080,"pid":195,"subject":"Async::Task","object_id":3088,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":153,"fiber_id":2600,"pid":153,"subject":"Async::Task","object_id":2608,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":165,"fiber_id":2776,"pid":165,"subject":"Async::Task","object_id":2784,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":159,"fiber_id":2664,"pid":159,"subject":"Async::Task","object_id":2672,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":180,"fiber_id":2888,"pid":180,"subject":"Async::Task","object_id":2896,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":96,"fiber_id":2248,"pid":96,"subject":"Async::Task","object_id":2256,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":15,"fiber_id":1544,"pid":15,"subject":"Async::Task","object_id":1552,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":30,"fiber_id":1896,"pid":30,"subject":"Async::Task","object_id":1904,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":159,"fiber_id":2680,"pid":159,"subject":"Async::Task","object_id":2688,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":111,"fiber_id":2440,"pid":111,"subject":"Async::Task","object_id":2448,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":132,"fiber_id":2552,"pid":132,"subject":"Async::Task","object_id":2560,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":24,"fiber_id":1624,"pid":24,"subject":"Async::Task","object_id":1632,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":174,"fiber_id":2936,"pid":174,"subject":"Async::Task","object_id":2944,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":108,"fiber_id":2312,"pid":108,"subject":"Async::Task","object_id":2320,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":117,"fiber_id":2296,"pid":117,"subject":"Async::Task","object_id":2304,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":144,"fiber_id":2776,"pid":144,"subject":"Async::Task","object_id":2784,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":138,"fiber_id":2632,"pid":138,"subject":"Async::Task","object_id":2640,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":162,"fiber_id":2824,"pid":162,"subject":"Async::Task","object_id":2832,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":96,"fiber_id":2264,"pid":96,"subject":"Async::Task","object_id":2272,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":198,"fiber_id":3080,"pid":198,"subject":"Async::Task","object_id":3088,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":111,"fiber_id":2456,"pid":111,"subject":"Async::Task","object_id":2464,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":45,"fiber_id":2024,"pid":45,"subject":"Async::Task","object_id":2032,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":123,"fiber_id":2328,"pid":123,"subject":"Async::Task","object_id":2336,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":84,"fiber_id":2152,"pid":84,"subject":"Async::Task","object_id":2160,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":15,"fiber_id":1560,"pid":15,"subject":"Async::Task","object_id":1568,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":132,"fiber_id":2568,"pid":132,"subject":"Async::Task","object_id":2576,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":45,"fiber_id":2040,"pid":45,"subject":"Async::Task","object_id":2048,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":33,"fiber_id":1944,"pid":33,"subject":"Async::Task","object_id":1952,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":180,"fiber_id":2904,"pid":180,"subject":"Async::Task","object_id":2912,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":177,"fiber_id":3016,"pid":177,"subject":"Async::Task","object_id":3024,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":156,"fiber_id":2712,"pid":156,"subject":"Async::Task","object_id":2720,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":51,"fiber_id":2120,"pid":51,"subject":"Async::Task","object_id":2128,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":168,"fiber_id":2840,"pid":168,"subject":"Async::Task","object_id":2848,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":30,"fiber_id":1912,"pid":30,"subject":"Async::Task","object_id":1920,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":147,"fiber_id":2584,"pid":147,"subject":"Async::Task","object_id":2592,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":69,"fiber_id":1736,"pid":69,"subject":"Async::Task","object_id":1744,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":78,"fiber_id":2488,"pid":78,"subject":"Async::Task","object_id":2496,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":30,"fiber_id":1928,"pid":30,"subject":"Async::Task","object_id":1936,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":177,"fiber_id":3032,"pid":177,"subject":"Async::Task","object_id":3040,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":150,"fiber_id":2600,"pid":150,"subject":"Async::Task","object_id":2608,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":192,"fiber_id":3048,"pid":192,"subject":"Async::Task","object_id":3056,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":129,"fiber_id":2248,"pid":129,"subject":"Async::Task","object_id":2256,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":180,"fiber_id":2920,"pid":180,"subject":"Async::Task","object_id":2928,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":108,"fiber_id":2328,"pid":108,"subject":"Async::Task","object_id":2336,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":105,"fiber_id":2184,"pid":105,"subject":"Async::Task","object_id":2192,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":144,"fiber_id":2792,"pid":144,"subject":"Async::Task","object_id":2800,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":132,"fiber_id":2584,"pid":132,"subject":"Async::Task","object_id":2592,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":99,"fiber_id":2216,"pid":99,"subject":"Async::Task","object_id":2224,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":102,"fiber_id":2344,"pid":102,"subject":"Async::Task","object_id":2352,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":165,"fiber_id":2792,"pid":165,"subject":"Async::Task","object_id":2800,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":156,"fiber_id":2728,"pid":156,"subject":"Async::Task","object_id":2736,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":117,"fiber_id":2312,"pid":117,"subject":"Async::Task","object_id":2320,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":171,"fiber_id":2936,"pid":171,"subject":"Async::Task","object_id":2944,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":12,"fiber_id":1688,"pid":12,"subject":"Async::Task","object_id":1696,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":144,"fiber_id":2808,"pid":144,"subject":"Async::Task","object_id":2816,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":90,"fiber_id":2280,"pid":90,"subject":"Async::Task","object_id":2288,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":45,"fiber_id":2056,"pid":45,"subject":"Async::Task","object_id":2064,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":78,"fiber_id":2504,"pid":78,"subject":"Async::Task","object_id":2512,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":129,"fiber_id":2264,"pid":129,"subject":"Async::Task","object_id":2272,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":123,"fiber_id":2344,"pid":123,"subject":"Async::Task","object_id":2352,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":102,"fiber_id":2360,"pid":102,"subject":"Async::Task","object_id":2368,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":186,"fiber_id":2984,"pid":186,"subject":"Async::Task","object_id":2992,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":108,"fiber_id":2344,"pid":108,"subject":"Async::Task","object_id":2352,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":105,"fiber_id":2200,"pid":105,"subject":"Async::Task","object_id":2208,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":153,"fiber_id":2616,"pid":153,"subject":"Async::Task","object_id":2624,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":45,"fiber_id":2072,"pid":45,"subject":"Async::Task","object_id":2080,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":93,"fiber_id":2392,"pid":93,"subject":"Async::Task","object_id":2400,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":126,"fiber_id":2520,"pid":126,"subject":"Async::Task","object_id":2528,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":174,"fiber_id":2952,"pid":174,"subject":"Async::Task","object_id":2960,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":15,"fiber_id":1576,"pid":15,"subject":"Async::Task","object_id":1584,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":177,"fiber_id":3048,"pid":177,"subject":"Async::Task","object_id":3056,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":24,"fiber_id":1640,"pid":24,"subject":"Async::Task","object_id":1648,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":78,"fiber_id":2520,"pid":78,"subject":"Async::Task","object_id":2528,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":69,"fiber_id":1752,"pid":69,"subject":"Async::Task","object_id":1760,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":57,"fiber_id":1832,"pid":57,"subject":"Async::Task","object_id":1840,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":105,"fiber_id":2216,"pid":105,"subject":"Async::Task","object_id":2224,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":51,"fiber_id":2136,"pid":51,"subject":"Async::Task","object_id":2144,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":159,"fiber_id":2696,"pid":159,"subject":"Async::Task","object_id":2704,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":63,"fiber_id":2024,"pid":63,"subject":"Async::Task","object_id":2032,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":192,"fiber_id":3064,"pid":192,"subject":"Async::Task","object_id":3072,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":12,"fiber_id":1704,"pid":12,"subject":"Async::Task","object_id":1712,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":177,"fiber_id":3064,"pid":177,"subject":"Async::Task","object_id":3072,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":174,"fiber_id":2968,"pid":174,"subject":"Async::Task","object_id":2976,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":36,"fiber_id":2024,"pid":36,"subject":"Async::Task","object_id":2032,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":18,"fiber_id":1864,"pid":18,"subject":"Async::Task","object_id":1872,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":60,"fiber_id":2200,"pid":60,"subject":"Async::Task","object_id":2208,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":90,"fiber_id":2296,"pid":90,"subject":"Async::Task","object_id":2304,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":126,"fiber_id":2536,"pid":126,"subject":"Async::Task","object_id":2544,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":111,"fiber_id":2472,"pid":111,"subject":"Async::Task","object_id":2480,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":51,"fiber_id":2152,"pid":51,"subject":"Async::Task","object_id":2160,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":57,"fiber_id":1848,"pid":57,"subject":"Async::Task","object_id":1856,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":138,"fiber_id":2648,"pid":138,"subject":"Async::Task","object_id":2656,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":45,"fiber_id":2088,"pid":45,"subject":"Async::Task","object_id":2096,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":9,"fiber_id":1928,"pid":9,"subject":"Async::Task","object_id":1936,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":57,"fiber_id":1864,"pid":57,"subject":"Async::Task","object_id":1872,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":36,"fiber_id":2040,"pid":36,"subject":"Async::Task","object_id":2048,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":42,"fiber_id":2040,"pid":42,"subject":"Async::Task","object_id":2048,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":45,"fiber_id":2104,"pid":45,"subject":"Async::Task","object_id":2112,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":159,"fiber_id":2712,"pid":159,"subject":"Async::Task","object_id":2720,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":123,"fiber_id":2360,"pid":123,"subject":"Async::Task","object_id":2368,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":153,"fiber_id":2632,"pid":153,"subject":"Async::Task","object_id":2640,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":135,"fiber_id":2552,"pid":135,"subject":"Async::Task","object_id":2560,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":18,"fiber_id":1880,"pid":18,"subject":"Async::Task","object_id":1888,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":15,"fiber_id":1592,"pid":15,"subject":"Async::Task","object_id":1600,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":93,"fiber_id":2408,"pid":93,"subject":"Async::Task","object_id":2416,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":90,"fiber_id":2312,"pid":90,"subject":"Async::Task","object_id":2320,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":45,"fiber_id":2120,"pid":45,"subject":"Async::Task","object_id":2128,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":117,"fiber_id":2328,"pid":117,"subject":"Async::Task","object_id":2336,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":69,"fiber_id":1768,"pid":69,"subject":"Async::Task","object_id":1776,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":192,"fiber_id":3080,"pid":192,"subject":"Async::Task","object_id":3088,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":48,"fiber_id":2120,"pid":48,"subject":"Async::Task","object_id":2128,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":165,"fiber_id":2808,"pid":165,"subject":"Async::Task","object_id":2816,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":180,"fiber_id":2936,"pid":180,"subject":"Async::Task","object_id":2944,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":42,"fiber_id":2056,"pid":42,"subject":"Async::Task","object_id":2064,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":18,"fiber_id":1896,"pid":18,"subject":"Async::Task","object_id":1904,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":144,"fiber_id":2824,"pid":144,"subject":"Async::Task","object_id":2832,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":111,"fiber_id":2488,"pid":111,"subject":"Async::Task","object_id":2496,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":69,"fiber_id":1784,"pid":69,"subject":"Async::Task","object_id":1792,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":183,"fiber_id":2728,"pid":183,"subject":"Async::Task","object_id":2736,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":15,"fiber_id":1608,"pid":15,"subject":"Async::Task","object_id":1616,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":165,"fiber_id":2824,"pid":165,"subject":"Async::Task","object_id":2832,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":66,"fiber_id":2088,"pid":66,"subject":"Async::Task","object_id":2096,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":21,"fiber_id":1944,"pid":21,"subject":"Async::Task","object_id":1952,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":93,"fiber_id":2424,"pid":93,"subject":"Async::Task","object_id":2432,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":159,"fiber_id":2728,"pid":159,"subject":"Async::Task","object_id":2736,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":126,"fiber_id":2552,"pid":126,"subject":"Async::Task","object_id":2560,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":12,"fiber_id":1720,"pid":12,"subject":"Async::Task","object_id":1728,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":168,"fiber_id":2856,"pid":168,"subject":"Async::Task","object_id":2864,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":144,"fiber_id":2840,"pid":144,"subject":"Async::Task","object_id":2848,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":81,"fiber_id":2264,"pid":81,"subject":"Async::Task","object_id":2272,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":174,"fiber_id":2984,"pid":174,"subject":"Async::Task","object_id":2992,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":66,"fiber_id":2104,"pid":66,"subject":"Async::Task","object_id":2112,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":96,"fiber_id":2280,"pid":96,"subject":"Async::Task","object_id":2288,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":69,"fiber_id":1800,"pid":69,"subject":"Async::Task","object_id":1808,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":159,"fiber_id":2744,"pid":159,"subject":"Async::Task","object_id":2752,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":15,"fiber_id":1624,"pid":15,"subject":"Async::Task","object_id":1632,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":27,"fiber_id":1496,"pid":27,"subject":"Async::Task","object_id":1504,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":87,"fiber_id":2168,"pid":87,"subject":"Async::Task","object_id":2176,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":51,"fiber_id":2168,"pid":51,"subject":"Async::Task","object_id":2176,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":156,"fiber_id":2744,"pid":156,"subject":"Async::Task","object_id":2752,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":120,"fiber_id":2312,"pid":120,"subject":"Async::Task","object_id":2320,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":21,"fiber_id":1960,"pid":21,"subject":"Async::Task","object_id":1968,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":39,"fiber_id":2056,"pid":39,"subject":"Async::Task","object_id":2064,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":129,"fiber_id":2280,"pid":129,"subject":"Async::Task","object_id":2288,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":54,"fiber_id":2232,"pid":54,"subject":"Async::Task","object_id":2240,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":195,"fiber_id":3096,"pid":195,"subject":"Async::Task","object_id":3104,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":159,"fiber_id":2760,"pid":159,"subject":"Async::Task","object_id":2768,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":69,"fiber_id":1816,"pid":69,"subject":"Async::Task","object_id":1824,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":174,"fiber_id":3000,"pid":174,"subject":"Async::Task","object_id":3008,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":192,"fiber_id":3096,"pid":192,"subject":"Async::Task","object_id":3104,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":126,"fiber_id":2568,"pid":126,"subject":"Async::Task","object_id":2576,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":21,"fiber_id":1976,"pid":21,"subject":"Async::Task","object_id":1984,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":15,"fiber_id":1640,"pid":15,"subject":"Async::Task","object_id":1648,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":144,"fiber_id":2856,"pid":144,"subject":"Async::Task","object_id":2864,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":165,"fiber_id":2840,"pid":165,"subject":"Async::Task","object_id":2848,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":135,"fiber_id":2568,"pid":135,"subject":"Async::Task","object_id":2576,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":21,"fiber_id":1992,"pid":21,"subject":"Async::Task","object_id":2000,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":69,"fiber_id":1832,"pid":69,"subject":"Async::Task","object_id":1840,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":51,"fiber_id":2184,"pid":51,"subject":"Async::Task","object_id":2192,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":186,"fiber_id":3000,"pid":186,"subject":"Async::Task","object_id":3008,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":165,"fiber_id":2856,"pid":165,"subject":"Async::Task","object_id":2864,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":141,"fiber_id":2760,"pid":141,"subject":"Async::Task","object_id":2768,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":54,"fiber_id":2248,"pid":54,"subject":"Async::Task","object_id":2256,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":156,"fiber_id":2760,"pid":156,"subject":"Async::Task","object_id":2768,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":132,"fiber_id":2600,"pid":132,"subject":"Async::Task","object_id":2608,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":66,"fiber_id":2120,"pid":66,"subject":"Async::Task","object_id":2128,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":189,"fiber_id":3528,"pid":189,"subject":"Async::Task","object_id":3536,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":108,"fiber_id":2360,"pid":108,"subject":"Async::Task","object_id":2368,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":51,"fiber_id":2200,"pid":51,"subject":"Async::Task","object_id":2208,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":120,"fiber_id":2328,"pid":120,"subject":"Async::Task","object_id":2336,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":69,"fiber_id":1848,"pid":69,"subject":"Async::Task","object_id":1856,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":54,"fiber_id":2264,"pid":54,"subject":"Async::Task","object_id":2272,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":24,"fiber_id":1656,"pid":24,"subject":"Async::Task","object_id":1664,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":108,"fiber_id":2376,"pid":108,"subject":"Async::Task","object_id":2384,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":102,"fiber_id":2376,"pid":102,"subject":"Async::Task","object_id":2384,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":120,"fiber_id":2344,"pid":120,"subject":"Async::Task","object_id":2352,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":51,"fiber_id":2216,"pid":51,"subject":"Async::Task","object_id":2224,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":171,"fiber_id":2952,"pid":171,"subject":"Async::Task","object_id":2960,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":138,"fiber_id":2664,"pid":138,"subject":"Async::Task","object_id":2672,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":24,"fiber_id":1672,"pid":24,"subject":"Async::Task","object_id":1680,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":33,"fiber_id":1960,"pid":33,"subject":"Async::Task","object_id":1968,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":135,"fiber_id":2584,"pid":135,"subject":"Async::Task","object_id":2592,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":195,"fiber_id":3112,"pid":195,"subject":"Async::Task","object_id":3120,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":51,"fiber_id":2232,"pid":51,"subject":"Async::Task","object_id":2240,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":177,"fiber_id":3080,"pid":177,"subject":"Async::Task","object_id":3088,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":150,"fiber_id":2616,"pid":150,"subject":"Async::Task","object_id":2624,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":138,"fiber_id":2680,"pid":138,"subject":"Async::Task","object_id":2688,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":102,"fiber_id":2392,"pid":102,"subject":"Async::Task","object_id":2400,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":69,"fiber_id":1864,"pid":69,"subject":"Async::Task","object_id":1872,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":120,"fiber_id":2360,"pid":120,"subject":"Async::Task","object_id":2368,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":57,"fiber_id":1880,"pid":57,"subject":"Async::Task","object_id":1888,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":171,"fiber_id":2968,"pid":171,"subject":"Async::Task","object_id":2976,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":30,"fiber_id":1944,"pid":30,"subject":"Async::Task","object_id":1952,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":114,"fiber_id":2504,"pid":114,"subject":"Async::Task","object_id":2512,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":36,"fiber_id":2056,"pid":36,"subject":"Async::Task","object_id":2064,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":138,"fiber_id":2696,"pid":138,"subject":"Async::Task","object_id":2704,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":57,"fiber_id":1896,"pid":57,"subject":"Async::Task","object_id":1904,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":72,"fiber_id":2264,"pid":72,"subject":"Async::Task","object_id":2272,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":69,"fiber_id":1880,"pid":69,"subject":"Async::Task","object_id":1888,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":180,"fiber_id":2952,"pid":180,"subject":"Async::Task","object_id":2960,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":120,"fiber_id":2376,"pid":120,"subject":"Async::Task","object_id":2384,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":117,"fiber_id":2344,"pid":117,"subject":"Async::Task","object_id":2352,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":90,"fiber_id":2328,"pid":90,"subject":"Async::Task","object_id":2336,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":177,"fiber_id":3096,"pid":177,"subject":"Async::Task","object_id":3104,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":30,"fiber_id":1960,"pid":30,"subject":"Async::Task","object_id":1968,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":42,"fiber_id":2072,"pid":42,"subject":"Async::Task","object_id":2080,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":111,"fiber_id":2504,"pid":111,"subject":"Async::Task","object_id":2512,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":120,"fiber_id":2392,"pid":120,"subject":"Async::Task","object_id":2400,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":123,"fiber_id":2376,"pid":123,"subject":"Async::Task","object_id":2384,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":60,"fiber_id":2216,"pid":60,"subject":"Async::Task","object_id":2224,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":105,"fiber_id":2232,"pid":105,"subject":"Async::Task","object_id":2240,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":45,"fiber_id":2136,"pid":45,"subject":"Async::Task","object_id":2144,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":42,"fiber_id":2088,"pid":42,"subject":"Async::Task","object_id":2096,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":123,"fiber_id":2392,"pid":123,"subject":"Async::Task","object_id":2400,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":9,"fiber_id":1944,"pid":9,"subject":"Async::Task","object_id":1952,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":120,"fiber_id":2408,"pid":120,"subject":"Async::Task","object_id":2416,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":72,"fiber_id":2280,"pid":72,"subject":"Async::Task","object_id":2288,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":24,"fiber_id":1688,"pid":24,"subject":"Async::Task","object_id":1696,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":168,"fiber_id":2872,"pid":168,"subject":"Async::Task","object_id":2880,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":42,"fiber_id":2104,"pid":42,"subject":"Async::Task","object_id":2112,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":111,"fiber_id":2520,"pid":111,"subject":"Async::Task","object_id":2528,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":99,"fiber_id":2232,"pid":99,"subject":"Async::Task","object_id":2240,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":168,"fiber_id":2888,"pid":168,"subject":"Async::Task","object_id":2896,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":39,"fiber_id":2072,"pid":39,"subject":"Async::Task","object_id":2080,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":123,"fiber_id":2408,"pid":123,"subject":"Async::Task","object_id":2416,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":192,"fiber_id":3112,"pid":192,"subject":"Async::Task","object_id":3120,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":96,"fiber_id":2296,"pid":96,"subject":"Async::Task","object_id":2304,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":72,"fiber_id":2296,"pid":72,"subject":"Async::Task","object_id":2304,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":99,"fiber_id":2248,"pid":99,"subject":"Async::Task","object_id":2256,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":39,"fiber_id":2088,"pid":39,"subject":"Async::Task","object_id":2096,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":123,"fiber_id":2424,"pid":123,"subject":"Async::Task","object_id":2432,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":192,"fiber_id":3128,"pid":192,"subject":"Async::Task","object_id":3136,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":96,"fiber_id":2312,"pid":96,"subject":"Async::Task","object_id":2320,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":150,"fiber_id":2632,"pid":150,"subject":"Async::Task","object_id":2640,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":162,"fiber_id":2840,"pid":162,"subject":"Async::Task","object_id":2848,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":123,"fiber_id":2440,"pid":123,"subject":"Async::Task","object_id":2448,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":189,"fiber_id":3544,"pid":189,"subject":"Async::Task","object_id":3552,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":168,"fiber_id":2904,"pid":168,"subject":"Async::Task","object_id":2912,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":81,"fiber_id":2280,"pid":81,"subject":"Async::Task","object_id":2288,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":123,"fiber_id":2456,"pid":123,"subject":"Async::Task","object_id":2464,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":69,"fiber_id":1896,"pid":69,"subject":"Async::Task","object_id":1904,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":39,"fiber_id":2104,"pid":39,"subject":"Async::Task","object_id":2112,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":60,"fiber_id":2232,"pid":60,"subject":"Async::Task","object_id":2240,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":168,"fiber_id":2920,"pid":168,"subject":"Async::Task","object_id":2928,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":27,"fiber_id":1512,"pid":27,"subject":"Async::Task","object_id":1520,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":81,"fiber_id":2296,"pid":81,"subject":"Async::Task","object_id":2304,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":159,"fiber_id":2776,"pid":159,"subject":"Async::Task","object_id":2784,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":15,"fiber_id":1656,"pid":15,"subject":"Async::Task","object_id":1664,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":90,"fiber_id":2344,"pid":90,"subject":"Async::Task","object_id":2352,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":69,"fiber_id":1912,"pid":69,"subject":"Async::Task","object_id":1920,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":66,"fiber_id":2136,"pid":66,"subject":"Async::Task","object_id":2144,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":150,"fiber_id":2648,"pid":150,"subject":"Async::Task","object_id":2656,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":54,"fiber_id":2280,"pid":54,"subject":"Async::Task","object_id":2288,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":27,"fiber_id":1528,"pid":27,"subject":"Async::Task","object_id":1536,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":126,"fiber_id":2584,"pid":126,"subject":"Async::Task","object_id":2592,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":159,"fiber_id":2792,"pid":159,"subject":"Async::Task","object_id":2800,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":12,"fiber_id":1736,"pid":12,"subject":"Async::Task","object_id":1744,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":189,"fiber_id":3560,"pid":189,"subject":"Async::Task","object_id":3568,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":69,"fiber_id":1928,"pid":69,"subject":"Async::Task","object_id":1936,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":96,"fiber_id":2328,"pid":96,"subject":"Async::Task","object_id":2336,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":192,"fiber_id":3144,"pid":192,"subject":"Async::Task","object_id":3152,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":54,"fiber_id":2296,"pid":54,"subject":"Async::Task","object_id":2304,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":81,"fiber_id":2312,"pid":81,"subject":"Async::Task","object_id":2320,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":27,"fiber_id":1544,"pid":27,"subject":"Async::Task","object_id":1552,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":69,"fiber_id":1944,"pid":69,"subject":"Async::Task","object_id":1952,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":27,"fiber_id":1560,"pid":27,"subject":"Async::Task","object_id":1568,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":126,"fiber_id":2600,"pid":126,"subject":"Async::Task","object_id":2608,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":15,"fiber_id":1672,"pid":15,"subject":"Async::Task","object_id":1680,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":165,"fiber_id":2872,"pid":165,"subject":"Async::Task","object_id":2880,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":156,"fiber_id":2776,"pid":156,"subject":"Async::Task","object_id":2784,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":198,"fiber_id":3096,"pid":198,"subject":"Async::Task","object_id":3104,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":141,"fiber_id":2776,"pid":141,"subject":"Async::Task","object_id":2784,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":78,"fiber_id":2536,"pid":78,"subject":"Async::Task","object_id":2544,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":69,"fiber_id":1960,"pid":69,"subject":"Async::Task","object_id":1968,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":12,"fiber_id":1752,"pid":12,"subject":"Async::Task","object_id":1760,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":27,"fiber_id":1576,"pid":27,"subject":"Async::Task","object_id":1584,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":108,"fiber_id":2392,"pid":108,"subject":"Async::Task","object_id":2400,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":159,"fiber_id":2808,"pid":159,"subject":"Async::Task","object_id":2816,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":96,"fiber_id":2344,"pid":96,"subject":"Async::Task","object_id":2352,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":33,"fiber_id":1976,"pid":33,"subject":"Async::Task","object_id":1984,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":75,"fiber_id":2168,"pid":75,"subject":"Async::Task","object_id":2176,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":198,"fiber_id":3112,"pid":198,"subject":"Async::Task","object_id":3120,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":96,"fiber_id":2360,"pid":96,"subject":"Async::Task","object_id":2368,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":180,"fiber_id":2968,"pid":180,"subject":"Async::Task","object_id":2976,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":141,"fiber_id":2792,"pid":141,"subject":"Async::Task","object_id":2800,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":27,"fiber_id":1592,"pid":27,"subject":"Async::Task","object_id":1600,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":135,"fiber_id":2600,"pid":135,"subject":"Async::Task","object_id":2608,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":75,"fiber_id":2184,"pid":75,"subject":"Async::Task","object_id":2192,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":174,"fiber_id":3016,"pid":174,"subject":"Async::Task","object_id":3024,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":33,"fiber_id":1992,"pid":33,"subject":"Async::Task","object_id":2000,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":42,"fiber_id":2120,"pid":42,"subject":"Async::Task","object_id":2128,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":69,"fiber_id":1976,"pid":69,"subject":"Async::Task","object_id":1984,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":27,"fiber_id":1608,"pid":27,"subject":"Async::Task","object_id":1616,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":75,"fiber_id":2200,"pid":75,"subject":"Async::Task","object_id":2208,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":174,"fiber_id":3032,"pid":174,"subject":"Async::Task","object_id":3040,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":141,"fiber_id":2808,"pid":141,"subject":"Async::Task","object_id":2816,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":198,"fiber_id":3128,"pid":198,"subject":"Async::Task","object_id":3136,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":144,"fiber_id":2872,"pid":144,"subject":"Async::Task","object_id":2880,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":186,"fiber_id":3016,"pid":186,"subject":"Async::Task","object_id":3024,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":177,"fiber_id":3112,"pid":177,"subject":"Async::Task","object_id":3120,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":114,"fiber_id":2520,"pid":114,"subject":"Async::Task","object_id":2528,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":57,"fiber_id":1912,"pid":57,"subject":"Async::Task","object_id":1920,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":33,"fiber_id":2008,"pid":33,"subject":"Async::Task","object_id":2016,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":183,"fiber_id":2744,"pid":183,"subject":"Async::Task","object_id":2752,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":129,"fiber_id":2296,"pid":129,"subject":"Async::Task","object_id":2304,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":165,"fiber_id":2888,"pid":165,"subject":"Async::Task","object_id":2896,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":108,"fiber_id":2408,"pid":108,"subject":"Async::Task","object_id":2416,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":42,"fiber_id":2136,"pid":42,"subject":"Async::Task","object_id":2144,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":102,"fiber_id":2408,"pid":102,"subject":"Async::Task","object_id":2416,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":198,"fiber_id":3144,"pid":198,"subject":"Async::Task","object_id":3152,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":186,"fiber_id":3032,"pid":186,"subject":"Async::Task","object_id":3040,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":141,"fiber_id":2824,"pid":141,"subject":"Async::Task","object_id":2832,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":180,"fiber_id":2984,"pid":180,"subject":"Async::Task","object_id":2992,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":174,"fiber_id":3048,"pid":174,"subject":"Async::Task","object_id":3056,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":75,"fiber_id":2216,"pid":75,"subject":"Async::Task","object_id":2224,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":177,"fiber_id":3128,"pid":177,"subject":"Async::Task","object_id":3136,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":129,"fiber_id":2312,"pid":129,"subject":"Async::Task","object_id":2320,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":144,"fiber_id":2888,"pid":144,"subject":"Async::Task","object_id":2896,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":93,"fiber_id":2440,"pid":93,"subject":"Async::Task","object_id":2448,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":135,"fiber_id":2616,"pid":135,"subject":"Async::Task","object_id":2624,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":9,"fiber_id":1960,"pid":9,"subject":"Async::Task","object_id":1968,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":111,"fiber_id":2536,"pid":111,"subject":"Async::Task","object_id":2544,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":138,"fiber_id":2712,"pid":138,"subject":"Async::Task","object_id":2720,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":33,"fiber_id":2024,"pid":33,"subject":"Async::Task","object_id":2032,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":84,"fiber_id":2168,"pid":84,"subject":"Async::Task","object_id":2176,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":48,"fiber_id":2136,"pid":48,"subject":"Async::Task","object_id":2144,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":114,"fiber_id":2536,"pid":114,"subject":"Async::Task","object_id":2544,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":9,"fiber_id":1976,"pid":9,"subject":"Async::Task","object_id":1984,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":174,"fiber_id":3064,"pid":174,"subject":"Async::Task","object_id":3072,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":183,"fiber_id":2760,"pid":183,"subject":"Async::Task","object_id":2768,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":144,"fiber_id":2904,"pid":144,"subject":"Async::Task","object_id":2912,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":120,"fiber_id":2424,"pid":120,"subject":"Async::Task","object_id":2432,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":174,"fiber_id":3080,"pid":174,"subject":"Async::Task","object_id":3088,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":93,"fiber_id":2456,"pid":93,"subject":"Async::Task","object_id":2464,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":138,"fiber_id":2728,"pid":138,"subject":"Async::Task","object_id":2736,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":171,"fiber_id":2984,"pid":171,"subject":"Async::Task","object_id":2992,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":111,"fiber_id":2552,"pid":111,"subject":"Async::Task","object_id":2560,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":84,"fiber_id":2184,"pid":84,"subject":"Async::Task","object_id":2192,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":120,"fiber_id":2440,"pid":120,"subject":"Async::Task","object_id":2448,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":24,"fiber_id":1704,"pid":24,"subject":"Async::Task","object_id":1712,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":45,"fiber_id":2152,"pid":45,"subject":"Async::Task","object_id":2160,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":9,"fiber_id":1992,"pid":9,"subject":"Async::Task","object_id":2000,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":81,"fiber_id":2328,"pid":81,"subject":"Async::Task","object_id":2336,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":72,"fiber_id":2312,"pid":72,"subject":"Async::Task","object_id":2320,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":153,"fiber_id":2648,"pid":153,"subject":"Async::Task","object_id":2656,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":84,"fiber_id":2200,"pid":84,"subject":"Async::Task","object_id":2208,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":162,"fiber_id":2856,"pid":162,"subject":"Async::Task","object_id":2864,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":18,"fiber_id":1912,"pid":18,"subject":"Async::Task","object_id":1920,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":144,"fiber_id":2920,"pid":144,"subject":"Async::Task","object_id":2928,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":93,"fiber_id":2472,"pid":93,"subject":"Async::Task","object_id":2480,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":57,"fiber_id":1928,"pid":57,"subject":"Async::Task","object_id":1936,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":39,"fiber_id":2120,"pid":39,"subject":"Async::Task","object_id":2128,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":24,"fiber_id":1720,"pid":24,"subject":"Async::Task","object_id":1728,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":198,"fiber_id":3160,"pid":198,"subject":"Async::Task","object_id":3168,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":93,"fiber_id":2488,"pid":93,"subject":"Async::Task","object_id":2496,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":162,"fiber_id":2872,"pid":162,"subject":"Async::Task","object_id":2880,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":150,"fiber_id":2664,"pid":150,"subject":"Async::Task","object_id":2672,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":132,"fiber_id":2616,"pid":132,"subject":"Async::Task","object_id":2624,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":18,"fiber_id":1928,"pid":18,"subject":"Async::Task","object_id":1936,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":183,"fiber_id":2776,"pid":183,"subject":"Async::Task","object_id":2784,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":123,"fiber_id":2472,"pid":123,"subject":"Async::Task","object_id":2480,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":105,"fiber_id":2248,"pid":105,"subject":"Async::Task","object_id":2256,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":75,"fiber_id":2232,"pid":75,"subject":"Async::Task","object_id":2240,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":60,"fiber_id":2248,"pid":60,"subject":"Async::Task","object_id":2256,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":186,"fiber_id":3048,"pid":186,"subject":"Async::Task","object_id":3056,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":153,"fiber_id":2664,"pid":153,"subject":"Async::Task","object_id":2672,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":93,"fiber_id":2504,"pid":93,"subject":"Async::Task","object_id":2512,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":99,"fiber_id":2264,"pid":99,"subject":"Async::Task","object_id":2272,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":21,"fiber_id":2008,"pid":21,"subject":"Async::Task","object_id":2016,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":114,"fiber_id":2552,"pid":114,"subject":"Async::Task","object_id":2560,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":108,"fiber_id":2424,"pid":108,"subject":"Async::Task","object_id":2432,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":48,"fiber_id":2152,"pid":48,"subject":"Async::Task","object_id":2160,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":39,"fiber_id":2136,"pid":39,"subject":"Async::Task","object_id":2144,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":105,"fiber_id":2264,"pid":105,"subject":"Async::Task","object_id":2272,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":129,"fiber_id":2328,"pid":129,"subject":"Async::Task","object_id":2336,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":45,"fiber_id":2168,"pid":45,"subject":"Async::Task","object_id":2176,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":84,"fiber_id":2216,"pid":84,"subject":"Async::Task","object_id":2224,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":102,"fiber_id":2424,"pid":102,"subject":"Async::Task","object_id":2432,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":186,"fiber_id":3064,"pid":186,"subject":"Async::Task","object_id":3072,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":180,"fiber_id":3000,"pid":180,"subject":"Async::Task","object_id":3008,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":69,"fiber_id":1992,"pid":69,"subject":"Async::Task","object_id":2000,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":165,"fiber_id":2904,"pid":165,"subject":"Async::Task","object_id":2912,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":159,"fiber_id":2824,"pid":159,"subject":"Async::Task","object_id":2832,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":123,"fiber_id":2488,"pid":123,"subject":"Async::Task","object_id":2496,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":153,"fiber_id":2680,"pid":153,"subject":"Async::Task","object_id":2688,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":114,"fiber_id":2568,"pid":114,"subject":"Async::Task","object_id":2576,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":72,"fiber_id":2328,"pid":72,"subject":"Async::Task","object_id":2336,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":168,"fiber_id":2936,"pid":168,"subject":"Async::Task","object_id":2944,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":33,"fiber_id":2040,"pid":33,"subject":"Async::Task","object_id":2048,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":42,"fiber_id":2152,"pid":42,"subject":"Async::Task","object_id":2160,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":183,"fiber_id":2792,"pid":183,"subject":"Async::Task","object_id":2800,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":78,"fiber_id":2552,"pid":78,"subject":"Async::Task","object_id":2560,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":105,"fiber_id":2280,"pid":105,"subject":"Async::Task","object_id":2288,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":36,"fiber_id":2072,"pid":36,"subject":"Async::Task","object_id":2080,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":123,"fiber_id":2504,"pid":123,"subject":"Async::Task","object_id":2512,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":48,"fiber_id":2168,"pid":48,"subject":"Async::Task","object_id":2176,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":54,"fiber_id":2312,"pid":54,"subject":"Async::Task","object_id":2320,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":174,"fiber_id":3096,"pid":174,"subject":"Async::Task","object_id":3104,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":60,"fiber_id":2264,"pid":60,"subject":"Async::Task","object_id":2272,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":102,"fiber_id":2440,"pid":102,"subject":"Async::Task","object_id":2448,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":153,"fiber_id":2696,"pid":153,"subject":"Async::Task","object_id":2704,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":171,"fiber_id":3000,"pid":171,"subject":"Async::Task","object_id":3008,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":27,"fiber_id":1624,"pid":27,"subject":"Async::Task","object_id":1632,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":33,"fiber_id":2056,"pid":33,"subject":"Async::Task","object_id":2064,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":93,"fiber_id":2520,"pid":93,"subject":"Async::Task","object_id":2528,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":138,"fiber_id":2744,"pid":138,"subject":"Async::Task","object_id":2752,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":129,"fiber_id":2344,"pid":129,"subject":"Async::Task","object_id":2352,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":81,"fiber_id":2344,"pid":81,"subject":"Async::Task","object_id":2352,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":63,"fiber_id":2040,"pid":63,"subject":"Async::Task","object_id":2048,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":36,"fiber_id":2088,"pid":36,"subject":"Async::Task","object_id":2096,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":126,"fiber_id":2616,"pid":126,"subject":"Async::Task","object_id":2624,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":39,"fiber_id":2152,"pid":39,"subject":"Async::Task","object_id":2160,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":195,"fiber_id":3128,"pid":195,"subject":"Async::Task","object_id":3136,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":96,"fiber_id":2376,"pid":96,"subject":"Async::Task","object_id":2384,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":159,"fiber_id":2840,"pid":159,"subject":"Async::Task","object_id":2848,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":30,"fiber_id":1976,"pid":30,"subject":"Async::Task","object_id":1984,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":150,"fiber_id":2680,"pid":150,"subject":"Async::Task","object_id":2688,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":174,"fiber_id":3112,"pid":174,"subject":"Async::Task","object_id":3120,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":126,"fiber_id":2632,"pid":126,"subject":"Async::Task","object_id":2640,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":60,"fiber_id":2280,"pid":60,"subject":"Async::Task","object_id":2288,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":168,"fiber_id":2952,"pid":168,"subject":"Async::Task","object_id":2960,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":96,"fiber_id":2392,"pid":96,"subject":"Async::Task","object_id":2400,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":99,"fiber_id":2280,"pid":99,"subject":"Async::Task","object_id":2288,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":9,"fiber_id":2008,"pid":9,"subject":"Async::Task","object_id":2016,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":45,"fiber_id":2184,"pid":45,"subject":"Async::Task","object_id":2192,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":57,"fiber_id":1944,"pid":57,"subject":"Async::Task","object_id":1952,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":174,"fiber_id":3128,"pid":174,"subject":"Async::Task","object_id":3136,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":66,"fiber_id":2152,"pid":66,"subject":"Async::Task","object_id":2160,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":93,"fiber_id":2536,"pid":93,"subject":"Async::Task","object_id":2544,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":174,"fiber_id":3144,"pid":174,"subject":"Async::Task","object_id":3152,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":42,"fiber_id":2168,"pid":42,"subject":"Async::Task","object_id":2176,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":102,"fiber_id":2456,"pid":102,"subject":"Async::Task","object_id":2464,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":123,"fiber_id":2520,"pid":123,"subject":"Async::Task","object_id":2528,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":141,"fiber_id":2840,"pid":141,"subject":"Async::Task","object_id":2848,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":189,"fiber_id":3576,"pid":189,"subject":"Async::Task","object_id":3584,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":69,"fiber_id":2008,"pid":69,"subject":"Async::Task","object_id":2016,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":33,"fiber_id":2072,"pid":33,"subject":"Async::Task","object_id":2080,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":153,"fiber_id":2712,"pid":153,"subject":"Async::Task","object_id":2720,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":42,"fiber_id":2184,"pid":42,"subject":"Async::Task","object_id":2192,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":96,"fiber_id":2408,"pid":96,"subject":"Async::Task","object_id":2416,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":51,"fiber_id":2248,"pid":51,"subject":"Async::Task","object_id":2256,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":24,"fiber_id":1736,"pid":24,"subject":"Async::Task","object_id":1744,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":186,"fiber_id":3080,"pid":186,"subject":"Async::Task","object_id":3088,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":78,"fiber_id":2568,"pid":78,"subject":"Async::Task","object_id":2576,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":129,"fiber_id":2360,"pid":129,"subject":"Async::Task","object_id":2368,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":132,"fiber_id":2632,"pid":132,"subject":"Async::Task","object_id":2640,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":45,"fiber_id":2200,"pid":45,"subject":"Async::Task","object_id":2208,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":123,"fiber_id":2536,"pid":123,"subject":"Async::Task","object_id":2544,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":189,"fiber_id":3592,"pid":189,"subject":"Async::Task","object_id":3600,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":153,"fiber_id":2728,"pid":153,"subject":"Async::Task","object_id":2736,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":156,"fiber_id":2792,"pid":156,"subject":"Async::Task","object_id":2800,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":183,"fiber_id":2808,"pid":183,"subject":"Async::Task","object_id":2816,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":162,"fiber_id":2888,"pid":162,"subject":"Async::Task","object_id":2896,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":18,"fiber_id":1944,"pid":18,"subject":"Async::Task","object_id":1952,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":135,"fiber_id":2632,"pid":135,"subject":"Async::Task","object_id":2640,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":39,"fiber_id":2168,"pid":39,"subject":"Async::Task","object_id":2176,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":93,"fiber_id":2552,"pid":93,"subject":"Async::Task","object_id":2560,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":105,"fiber_id":2296,"pid":105,"subject":"Async::Task","object_id":2304,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":96,"fiber_id":2424,"pid":96,"subject":"Async::Task","object_id":2432,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":81,"fiber_id":2360,"pid":81,"subject":"Async::Task","object_id":2368,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":153,"fiber_id":2744,"pid":153,"subject":"Async::Task","object_id":2752,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":24,"fiber_id":1752,"pid":24,"subject":"Async::Task","object_id":1760,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":192,"fiber_id":3160,"pid":192,"subject":"Async::Task","object_id":3168,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":21,"fiber_id":2024,"pid":21,"subject":"Async::Task","object_id":2032,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":39,"fiber_id":2184,"pid":39,"subject":"Async::Task","object_id":2192,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":174,"fiber_id":3160,"pid":174,"subject":"Async::Task","object_id":3168,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":198,"fiber_id":3176,"pid":198,"subject":"Async::Task","object_id":3184,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":144,"fiber_id":2936,"pid":144,"subject":"Async::Task","object_id":2944,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":159,"fiber_id":2856,"pid":159,"subject":"Async::Task","object_id":2864,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":63,"fiber_id":2056,"pid":63,"subject":"Async::Task","object_id":2064,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":48,"fiber_id":2184,"pid":48,"subject":"Async::Task","object_id":2192,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":54,"fiber_id":2328,"pid":54,"subject":"Async::Task","object_id":2336,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":15,"fiber_id":1688,"pid":15,"subject":"Async::Task","object_id":1696,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":93,"fiber_id":2568,"pid":93,"subject":"Async::Task","object_id":2576,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":105,"fiber_id":2312,"pid":105,"subject":"Async::Task","object_id":2320,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":33,"fiber_id":2088,"pid":33,"subject":"Async::Task","object_id":2096,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":24,"fiber_id":1768,"pid":24,"subject":"Async::Task","object_id":1776,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":162,"fiber_id":2904,"pid":162,"subject":"Async::Task","object_id":2912,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":153,"fiber_id":2760,"pid":153,"subject":"Async::Task","object_id":2768,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":54,"fiber_id":2344,"pid":54,"subject":"Async::Task","object_id":2352,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":174,"fiber_id":3176,"pid":174,"subject":"Async::Task","object_id":3184,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":87,"fiber_id":2184,"pid":87,"subject":"Async::Task","object_id":2192,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":102,"fiber_id":2472,"pid":102,"subject":"Async::Task","object_id":2480,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":84,"fiber_id":2232,"pid":84,"subject":"Async::Task","object_id":2240,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":144,"fiber_id":2952,"pid":144,"subject":"Async::Task","object_id":2960,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":198,"fiber_id":3192,"pid":198,"subject":"Async::Task","object_id":3200,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":36,"fiber_id":2104,"pid":36,"subject":"Async::Task","object_id":2112,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":174,"fiber_id":3192,"pid":174,"subject":"Async::Task","object_id":3200,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":63,"fiber_id":2072,"pid":63,"subject":"Async::Task","object_id":2080,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":18,"fiber_id":1960,"pid":18,"subject":"Async::Task","object_id":1968,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":192,"fiber_id":3176,"pid":192,"subject":"Async::Task","object_id":3184,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":102,"fiber_id":2488,"pid":102,"subject":"Async::Task","object_id":2496,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":114,"fiber_id":2584,"pid":114,"subject":"Async::Task","object_id":2592,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":69,"fiber_id":2024,"pid":69,"subject":"Async::Task","object_id":2032,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":30,"fiber_id":1992,"pid":30,"subject":"Async::Task","object_id":2000,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":105,"fiber_id":2328,"pid":105,"subject":"Async::Task","object_id":2336,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":96,"fiber_id":2440,"pid":96,"subject":"Async::Task","object_id":2448,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":78,"fiber_id":2584,"pid":78,"subject":"Async::Task","object_id":2592,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":108,"fiber_id":2440,"pid":108,"subject":"Async::Task","object_id":2448,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":195,"fiber_id":3144,"pid":195,"subject":"Async::Task","object_id":3152,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":24,"fiber_id":1784,"pid":24,"subject":"Async::Task","object_id":1792,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":144,"fiber_id":2968,"pid":144,"subject":"Async::Task","object_id":2976,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":30,"fiber_id":2008,"pid":30,"subject":"Async::Task","object_id":2016,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":123,"fiber_id":2552,"pid":123,"subject":"Async::Task","object_id":2560,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":96,"fiber_id":2456,"pid":96,"subject":"Async::Task","object_id":2464,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":45,"fiber_id":2216,"pid":45,"subject":"Async::Task","object_id":2224,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":66,"fiber_id":2168,"pid":66,"subject":"Async::Task","object_id":2176,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":42,"fiber_id":2200,"pid":42,"subject":"Async::Task","object_id":2208,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":96,"fiber_id":2472,"pid":96,"subject":"Async::Task","object_id":2480,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":114,"fiber_id":2600,"pid":114,"subject":"Async::Task","object_id":2608,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":117,"fiber_id":2360,"pid":117,"subject":"Async::Task","object_id":2368,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":174,"fiber_id":3208,"pid":174,"subject":"Async::Task","object_id":3216,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":108,"fiber_id":2456,"pid":108,"subject":"Async::Task","object_id":2464,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":126,"fiber_id":2648,"pid":126,"subject":"Async::Task","object_id":2656,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":195,"fiber_id":3160,"pid":195,"subject":"Async::Task","object_id":3168,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":90,"fiber_id":2360,"pid":90,"subject":"Async::Task","object_id":2368,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":84,"fiber_id":2248,"pid":84,"subject":"Async::Task","object_id":2256,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":60,"fiber_id":2296,"pid":60,"subject":"Async::Task","object_id":2304,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":96,"fiber_id":2488,"pid":96,"subject":"Async::Task","object_id":2496,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":18,"fiber_id":1976,"pid":18,"subject":"Async::Task","object_id":1984,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":165,"fiber_id":2920,"pid":165,"subject":"Async::Task","object_id":2928,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":51,"fiber_id":2264,"pid":51,"subject":"Async::Task","object_id":2272,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":144,"fiber_id":2984,"pid":144,"subject":"Async::Task","object_id":2992,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":156,"fiber_id":2808,"pid":156,"subject":"Async::Task","object_id":2816,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":99,"fiber_id":2296,"pid":99,"subject":"Async::Task","object_id":2304,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":126,"fiber_id":2664,"pid":126,"subject":"Async::Task","object_id":2672,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":12,"fiber_id":1768,"pid":12,"subject":"Async::Task","object_id":1776,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":180,"fiber_id":3016,"pid":180,"subject":"Async::Task","object_id":3024,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":66,"fiber_id":2184,"pid":66,"subject":"Async::Task","object_id":2192,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":90,"fiber_id":2376,"pid":90,"subject":"Async::Task","object_id":2384,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":84,"fiber_id":2264,"pid":84,"subject":"Async::Task","object_id":2272,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":174,"fiber_id":3224,"pid":174,"subject":"Async::Task","object_id":3232,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":69,"fiber_id":2040,"pid":69,"subject":"Async::Task","object_id":2048,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":102,"fiber_id":2504,"pid":102,"subject":"Async::Task","object_id":2512,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":129,"fiber_id":2376,"pid":129,"subject":"Async::Task","object_id":2384,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":156,"fiber_id":2824,"pid":156,"subject":"Async::Task","object_id":2832,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":105,"fiber_id":2344,"pid":105,"subject":"Async::Task","object_id":2352,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":117,"fiber_id":2376,"pid":117,"subject":"Async::Task","object_id":2384,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":180,"fiber_id":3032,"pid":180,"subject":"Async::Task","object_id":3040,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":108,"fiber_id":2472,"pid":108,"subject":"Async::Task","object_id":2480,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":195,"fiber_id":3176,"pid":195,"subject":"Async::Task","object_id":3184,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":99,"fiber_id":2312,"pid":99,"subject":"Async::Task","object_id":2320,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":75,"fiber_id":2248,"pid":75,"subject":"Async::Task","object_id":2256,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":198,"fiber_id":3208,"pid":198,"subject":"Async::Task","object_id":3216,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":78,"fiber_id":2600,"pid":78,"subject":"Async::Task","object_id":2608,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":165,"fiber_id":2936,"pid":165,"subject":"Async::Task","object_id":2944,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":132,"fiber_id":2648,"pid":132,"subject":"Async::Task","object_id":2656,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":138,"fiber_id":2760,"pid":138,"subject":"Async::Task","object_id":2768,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":135,"fiber_id":2648,"pid":135,"subject":"Async::Task","object_id":2656,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":105,"fiber_id":2360,"pid":105,"subject":"Async::Task","object_id":2368,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":57,"fiber_id":1960,"pid":57,"subject":"Async::Task","object_id":1968,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":189,"fiber_id":3608,"pid":189,"subject":"Async::Task","object_id":3616,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":180,"fiber_id":3048,"pid":180,"subject":"Async::Task","object_id":3056,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":177,"fiber_id":3144,"pid":177,"subject":"Async::Task","object_id":3152,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":144,"fiber_id":3000,"pid":144,"subject":"Async::Task","object_id":3008,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":66,"fiber_id":2200,"pid":66,"subject":"Async::Task","object_id":2208,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":78,"fiber_id":2616,"pid":78,"subject":"Async::Task","object_id":2624,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":198,"fiber_id":3224,"pid":198,"subject":"Async::Task","object_id":3232,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":120,"fiber_id":2456,"pid":120,"subject":"Async::Task","object_id":2464,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":126,"fiber_id":2680,"pid":126,"subject":"Async::Task","object_id":2688,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":132,"fiber_id":2664,"pid":132,"subject":"Async::Task","object_id":2672,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":57,"fiber_id":1976,"pid":57,"subject":"Async::Task","object_id":1984,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":78,"fiber_id":2632,"pid":78,"subject":"Async::Task","object_id":2640,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":177,"fiber_id":3160,"pid":177,"subject":"Async::Task","object_id":3168,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":111,"fiber_id":2568,"pid":111,"subject":"Async::Task","object_id":2576,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":120,"fiber_id":2472,"pid":120,"subject":"Async::Task","object_id":2480,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":189,"fiber_id":3624,"pid":189,"subject":"Async::Task","object_id":3632,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":12,"fiber_id":1784,"pid":12,"subject":"Async::Task","object_id":1792,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":33,"fiber_id":2104,"pid":33,"subject":"Async::Task","object_id":2112,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":144,"fiber_id":3016,"pid":144,"subject":"Async::Task","object_id":3024,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":174,"fiber_id":3240,"pid":174,"subject":"Async::Task","object_id":3248,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":78,"fiber_id":2648,"pid":78,"subject":"Async::Task","object_id":2656,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":12,"fiber_id":1800,"pid":12,"subject":"Async::Task","object_id":1808,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":33,"fiber_id":2120,"pid":33,"subject":"Async::Task","object_id":2128,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":198,"fiber_id":3240,"pid":198,"subject":"Async::Task","object_id":3248,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":180,"fiber_id":3064,"pid":180,"subject":"Async::Task","object_id":3072,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":186,"fiber_id":3096,"pid":186,"subject":"Async::Task","object_id":3104,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":120,"fiber_id":2488,"pid":120,"subject":"Async::Task","object_id":2496,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":171,"fiber_id":3016,"pid":171,"subject":"Async::Task","object_id":3024,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":78,"fiber_id":2664,"pid":78,"subject":"Async::Task","object_id":2672,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":138,"fiber_id":2776,"pid":138,"subject":"Async::Task","object_id":2784,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":93,"fiber_id":2584,"pid":93,"subject":"Async::Task","object_id":2592,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":168,"fiber_id":2968,"pid":168,"subject":"Async::Task","object_id":2976,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":120,"fiber_id":2504,"pid":120,"subject":"Async::Task","object_id":2512,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":132,"fiber_id":2680,"pid":132,"subject":"Async::Task","object_id":2688,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":171,"fiber_id":3032,"pid":171,"subject":"Async::Task","object_id":3040,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":141,"fiber_id":2856,"pid":141,"subject":"Async::Task","object_id":2864,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":81,"fiber_id":2376,"pid":81,"subject":"Async::Task","object_id":2384,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":21,"fiber_id":2040,"pid":21,"subject":"Async::Task","object_id":2048,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":186,"fiber_id":3112,"pid":186,"subject":"Async::Task","object_id":3120,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":39,"fiber_id":2200,"pid":39,"subject":"Async::Task","object_id":2208,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":12,"fiber_id":1816,"pid":12,"subject":"Async::Task","object_id":1824,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":33,"fiber_id":2136,"pid":33,"subject":"Async::Task","object_id":2144,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":174,"fiber_id":3256,"pid":174,"subject":"Async::Task","object_id":3264,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":138,"fiber_id":2792,"pid":138,"subject":"Async::Task","object_id":2800,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":132,"fiber_id":2696,"pid":132,"subject":"Async::Task","object_id":2704,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":120,"fiber_id":2520,"pid":120,"subject":"Async::Task","object_id":2528,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":171,"fiber_id":3048,"pid":171,"subject":"Async::Task","object_id":3056,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":78,"fiber_id":2680,"pid":78,"subject":"Async::Task","object_id":2688,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":168,"fiber_id":2984,"pid":168,"subject":"Async::Task","object_id":2992,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":186,"fiber_id":3128,"pid":186,"subject":"Async::Task","object_id":3136,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":45,"fiber_id":2232,"pid":45,"subject":"Async::Task","object_id":2240,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":177,"fiber_id":3176,"pid":177,"subject":"Async::Task","object_id":3184,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":81,"fiber_id":2392,"pid":81,"subject":"Async::Task","object_id":2400,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":120,"fiber_id":2536,"pid":120,"subject":"Async::Task","object_id":2544,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":171,"fiber_id":3064,"pid":171,"subject":"Async::Task","object_id":3072,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":12,"fiber_id":1832,"pid":12,"subject":"Async::Task","object_id":1840,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":198,"fiber_id":3256,"pid":198,"subject":"Async::Task","object_id":3264,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":30,"fiber_id":2024,"pid":30,"subject":"Async::Task","object_id":2032,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":39,"fiber_id":2216,"pid":39,"subject":"Async::Task","object_id":2224,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":78,"fiber_id":2696,"pid":78,"subject":"Async::Task","object_id":2704,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":87,"fiber_id":2200,"pid":87,"subject":"Async::Task","object_id":2208,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":48,"fiber_id":2200,"pid":48,"subject":"Async::Task","object_id":2208,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":36,"fiber_id":2120,"pid":36,"subject":"Async::Task","object_id":2128,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":9,"fiber_id":2024,"pid":9,"subject":"Async::Task","object_id":2032,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":93,"fiber_id":2600,"pid":93,"subject":"Async::Task","object_id":2608,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":171,"fiber_id":3080,"pid":171,"subject":"Async::Task","object_id":3088,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":177,"fiber_id":3192,"pid":177,"subject":"Async::Task","object_id":3200,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":72,"fiber_id":2344,"pid":72,"subject":"Async::Task","object_id":2352,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":21,"fiber_id":2056,"pid":21,"subject":"Async::Task","object_id":2064,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":186,"fiber_id":3144,"pid":186,"subject":"Async::Task","object_id":3152,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":30,"fiber_id":2040,"pid":30,"subject":"Async::Task","object_id":2048,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":81,"fiber_id":2408,"pid":81,"subject":"Async::Task","object_id":2416,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":153,"fiber_id":2776,"pid":153,"subject":"Async::Task","object_id":2784,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":120,"fiber_id":2552,"pid":120,"subject":"Async::Task","object_id":2560,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":171,"fiber_id":3096,"pid":171,"subject":"Async::Task","object_id":3104,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":72,"fiber_id":2360,"pid":72,"subject":"Async::Task","object_id":2368,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":129,"fiber_id":2392,"pid":129,"subject":"Async::Task","object_id":2400,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":132,"fiber_id":2712,"pid":132,"subject":"Async::Task","object_id":2720,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":54,"fiber_id":2360,"pid":54,"subject":"Async::Task","object_id":2368,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":81,"fiber_id":2424,"pid":81,"subject":"Async::Task","object_id":2432,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":171,"fiber_id":3112,"pid":171,"subject":"Async::Task","object_id":3120,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":153,"fiber_id":2792,"pid":153,"subject":"Async::Task","object_id":2800,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":87,"fiber_id":2216,"pid":87,"subject":"Async::Task","object_id":2224,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":75,"fiber_id":2264,"pid":75,"subject":"Async::Task","object_id":2272,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":36,"fiber_id":2136,"pid":36,"subject":"Async::Task","object_id":2144,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":165,"fiber_id":2952,"pid":165,"subject":"Async::Task","object_id":2960,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":171,"fiber_id":3128,"pid":171,"subject":"Async::Task","object_id":3136,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":180,"fiber_id":3080,"pid":180,"subject":"Async::Task","object_id":3088,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":165,"fiber_id":2968,"pid":165,"subject":"Async::Task","object_id":2976,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":51,"fiber_id":2280,"pid":51,"subject":"Async::Task","object_id":2288,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":156,"fiber_id":2840,"pid":156,"subject":"Async::Task","object_id":2848,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":87,"fiber_id":2232,"pid":87,"subject":"Async::Task","object_id":2240,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":120,"fiber_id":2568,"pid":120,"subject":"Async::Task","object_id":2576,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":165,"fiber_id":2984,"pid":165,"subject":"Async::Task","object_id":2992,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":162,"fiber_id":2920,"pid":162,"subject":"Async::Task","object_id":2928,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":21,"fiber_id":2072,"pid":21,"subject":"Async::Task","object_id":2080,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":81,"fiber_id":2440,"pid":81,"subject":"Async::Task","object_id":2448,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":63,"fiber_id":2088,"pid":63,"subject":"Async::Task","object_id":2096,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":102,"fiber_id":2520,"pid":102,"subject":"Async::Task","object_id":2528,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":75,"fiber_id":2280,"pid":75,"subject":"Async::Task","object_id":2288,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":54,"fiber_id":2376,"pid":54,"subject":"Async::Task","object_id":2384,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":135,"fiber_id":2664,"pid":135,"subject":"Async::Task","object_id":2672,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":165,"fiber_id":3000,"pid":165,"subject":"Async::Task","object_id":3008,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":195,"fiber_id":3192,"pid":195,"subject":"Async::Task","object_id":3200,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":75,"fiber_id":2296,"pid":75,"subject":"Async::Task","object_id":2304,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":135,"fiber_id":2680,"pid":135,"subject":"Async::Task","object_id":2688,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":9,"fiber_id":2040,"pid":9,"subject":"Async::Task","object_id":2048,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":84,"fiber_id":2280,"pid":84,"subject":"Async::Task","object_id":2288,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":144,"fiber_id":3032,"pid":144,"subject":"Async::Task","object_id":3040,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":180,"fiber_id":3096,"pid":180,"subject":"Async::Task","object_id":3104,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":120,"fiber_id":2584,"pid":120,"subject":"Async::Task","object_id":2592,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":180,"fiber_id":3112,"pid":180,"subject":"Async::Task","object_id":3120,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":144,"fiber_id":3048,"pid":144,"subject":"Async::Task","object_id":3056,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":186,"fiber_id":3160,"pid":186,"subject":"Async::Task","object_id":3168,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":93,"fiber_id":2616,"pid":93,"subject":"Async::Task","object_id":2624,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":51,"fiber_id":2296,"pid":51,"subject":"Async::Task","object_id":2304,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":42,"fiber_id":2216,"pid":42,"subject":"Async::Task","object_id":2224,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":96,"fiber_id":2504,"pid":96,"subject":"Async::Task","object_id":2512,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":114,"fiber_id":2616,"pid":114,"subject":"Async::Task","object_id":2624,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":186,"fiber_id":3176,"pid":186,"subject":"Async::Task","object_id":3184,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":63,"fiber_id":2104,"pid":63,"subject":"Async::Task","object_id":2112,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":81,"fiber_id":2456,"pid":81,"subject":"Async::Task","object_id":2464,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":54,"fiber_id":2392,"pid":54,"subject":"Async::Task","object_id":2400,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":174,"fiber_id":3272,"pid":174,"subject":"Async::Task","object_id":3280,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":189,"fiber_id":3640,"pid":189,"subject":"Async::Task","object_id":3648,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":96,"fiber_id":2520,"pid":96,"subject":"Async::Task","object_id":2528,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":90,"fiber_id":2392,"pid":90,"subject":"Async::Task","object_id":2400,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":111,"fiber_id":2584,"pid":111,"subject":"Async::Task","object_id":2592,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":42,"fiber_id":2232,"pid":42,"subject":"Async::Task","object_id":2240,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":39,"fiber_id":2232,"pid":39,"subject":"Async::Task","object_id":2240,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":126,"fiber_id":2696,"pid":126,"subject":"Async::Task","object_id":2704,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":75,"fiber_id":2312,"pid":75,"subject":"Async::Task","object_id":2320,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":99,"fiber_id":2328,"pid":99,"subject":"Async::Task","object_id":2336,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":36,"fiber_id":2152,"pid":36,"subject":"Async::Task","object_id":2160,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":153,"fiber_id":2808,"pid":153,"subject":"Async::Task","object_id":2816,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":141,"fiber_id":2872,"pid":141,"subject":"Async::Task","object_id":2880,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":129,"fiber_id":2408,"pid":129,"subject":"Async::Task","object_id":2416,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":186,"fiber_id":3192,"pid":186,"subject":"Async::Task","object_id":3200,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":87,"fiber_id":2248,"pid":87,"subject":"Async::Task","object_id":2256,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":81,"fiber_id":2472,"pid":81,"subject":"Async::Task","object_id":2480,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":165,"fiber_id":3016,"pid":165,"subject":"Async::Task","object_id":3024,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":153,"fiber_id":2824,"pid":153,"subject":"Async::Task","object_id":2832,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":84,"fiber_id":2296,"pid":84,"subject":"Async::Task","object_id":2304,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":168,"fiber_id":3000,"pid":168,"subject":"Async::Task","object_id":3008,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":69,"fiber_id":2056,"pid":69,"subject":"Async::Task","object_id":2064,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":99,"fiber_id":2344,"pid":99,"subject":"Async::Task","object_id":2352,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":9,"fiber_id":2056,"pid":9,"subject":"Async::Task","object_id":2064,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":108,"fiber_id":2488,"pid":108,"subject":"Async::Task","object_id":2496,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":192,"fiber_id":3192,"pid":192,"subject":"Async::Task","object_id":3200,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":198,"fiber_id":3272,"pid":198,"subject":"Async::Task","object_id":3280,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":177,"fiber_id":3208,"pid":177,"subject":"Async::Task","object_id":3216,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":111,"fiber_id":2600,"pid":111,"subject":"Async::Task","object_id":2608,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":126,"fiber_id":2712,"pid":126,"subject":"Async::Task","object_id":2720,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":138,"fiber_id":2808,"pid":138,"subject":"Async::Task","object_id":2816,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":81,"fiber_id":2488,"pid":81,"subject":"Async::Task","object_id":2496,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":75,"fiber_id":2328,"pid":75,"subject":"Async::Task","object_id":2336,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":159,"fiber_id":2872,"pid":159,"subject":"Async::Task","object_id":2880,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":9,"fiber_id":2072,"pid":9,"subject":"Async::Task","object_id":2080,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":123,"fiber_id":2568,"pid":123,"subject":"Async::Task","object_id":2576,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":165,"fiber_id":3032,"pid":165,"subject":"Async::Task","object_id":3040,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":42,"fiber_id":2248,"pid":42,"subject":"Async::Task","object_id":2256,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":57,"fiber_id":1992,"pid":57,"subject":"Async::Task","object_id":2000,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":120,"fiber_id":2600,"pid":120,"subject":"Async::Task","object_id":2608,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":129,"fiber_id":2424,"pid":129,"subject":"Async::Task","object_id":2432,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":9,"fiber_id":2088,"pid":9,"subject":"Async::Task","object_id":2096,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":174,"fiber_id":3288,"pid":174,"subject":"Async::Task","object_id":3296,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":54,"fiber_id":2408,"pid":54,"subject":"Async::Task","object_id":2416,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":36,"fiber_id":2168,"pid":36,"subject":"Async::Task","object_id":2176,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":87,"fiber_id":2264,"pid":87,"subject":"Async::Task","object_id":2272,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":102,"fiber_id":2536,"pid":102,"subject":"Async::Task","object_id":2544,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":111,"fiber_id":2616,"pid":111,"subject":"Async::Task","object_id":2624,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":150,"fiber_id":2696,"pid":150,"subject":"Async::Task","object_id":2704,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":153,"fiber_id":2840,"pid":153,"subject":"Async::Task","object_id":2848,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":159,"fiber_id":2888,"pid":159,"subject":"Async::Task","object_id":2896,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":114,"fiber_id":2632,"pid":114,"subject":"Async::Task","object_id":2640,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":36,"fiber_id":2184,"pid":36,"subject":"Async::Task","object_id":2192,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":30,"fiber_id":2056,"pid":30,"subject":"Async::Task","object_id":2064,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":174,"fiber_id":3304,"pid":174,"subject":"Async::Task","object_id":3312,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":72,"fiber_id":2376,"pid":72,"subject":"Async::Task","object_id":2384,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":75,"fiber_id":2344,"pid":75,"subject":"Async::Task","object_id":2352,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":132,"fiber_id":2728,"pid":132,"subject":"Async::Task","object_id":2736,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":174,"fiber_id":3320,"pid":174,"subject":"Async::Task","object_id":3328,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":99,"fiber_id":2360,"pid":99,"subject":"Async::Task","object_id":2368,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":141,"fiber_id":2888,"pid":141,"subject":"Async::Task","object_id":2896,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":69,"fiber_id":2072,"pid":69,"subject":"Async::Task","object_id":2080,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":30,"fiber_id":2088,"pid":30,"subject":"Async::Task","object_id":2096,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":99,"fiber_id":2376,"pid":99,"subject":"Async::Task","object_id":2384,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":144,"fiber_id":3064,"pid":144,"subject":"Async::Task","object_id":3072,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":192,"fiber_id":3208,"pid":192,"subject":"Async::Task","object_id":3216,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":138,"fiber_id":2824,"pid":138,"subject":"Async::Task","object_id":2832,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":93,"fiber_id":2632,"pid":93,"subject":"Async::Task","object_id":2640,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":72,"fiber_id":2392,"pid":72,"subject":"Async::Task","object_id":2400,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":153,"fiber_id":2856,"pid":153,"subject":"Async::Task","object_id":2864,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":78,"fiber_id":2712,"pid":78,"subject":"Async::Task","object_id":2720,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":195,"fiber_id":3208,"pid":195,"subject":"Async::Task","object_id":3216,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":174,"fiber_id":3336,"pid":174,"subject":"Async::Task","object_id":3344,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":69,"fiber_id":2088,"pid":69,"subject":"Async::Task","object_id":2096,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":90,"fiber_id":2408,"pid":90,"subject":"Async::Task","object_id":2416,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":30,"fiber_id":2104,"pid":30,"subject":"Async::Task","object_id":2112,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":177,"fiber_id":3224,"pid":177,"subject":"Async::Task","object_id":3232,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":150,"fiber_id":2712,"pid":150,"subject":"Async::Task","object_id":2720,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":114,"fiber_id":2648,"pid":114,"subject":"Async::Task","object_id":2656,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":159,"fiber_id":2904,"pid":159,"subject":"Async::Task","object_id":2912,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":192,"fiber_id":3224,"pid":192,"subject":"Async::Task","object_id":3232,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":144,"fiber_id":3080,"pid":144,"subject":"Async::Task","object_id":3088,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":156,"fiber_id":2856,"pid":156,"subject":"Async::Task","object_id":2864,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":15,"fiber_id":1704,"pid":15,"subject":"Async::Task","object_id":1712,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":93,"fiber_id":2648,"pid":93,"subject":"Async::Task","object_id":2656,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":165,"fiber_id":3048,"pid":165,"subject":"Async::Task","object_id":3056,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":69,"fiber_id":2104,"pid":69,"subject":"Async::Task","object_id":2112,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":54,"fiber_id":2424,"pid":54,"subject":"Async::Task","object_id":2432,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":141,"fiber_id":2904,"pid":141,"subject":"Async::Task","object_id":2912,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":99,"fiber_id":2392,"pid":99,"subject":"Async::Task","object_id":2400,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":111,"fiber_id":2632,"pid":111,"subject":"Async::Task","object_id":2640,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":150,"fiber_id":2728,"pid":150,"subject":"Async::Task","object_id":2736,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":60,"fiber_id":2312,"pid":60,"subject":"Async::Task","object_id":2320,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":72,"fiber_id":2408,"pid":72,"subject":"Async::Task","object_id":2416,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":144,"fiber_id":3096,"pid":144,"subject":"Async::Task","object_id":3104,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":81,"fiber_id":2504,"pid":81,"subject":"Async::Task","object_id":2512,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":45,"fiber_id":2248,"pid":45,"subject":"Async::Task","object_id":2256,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":78,"fiber_id":2728,"pid":78,"subject":"Async::Task","object_id":2736,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":12,"fiber_id":1848,"pid":12,"subject":"Async::Task","object_id":1856,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":138,"fiber_id":2840,"pid":138,"subject":"Async::Task","object_id":2848,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":129,"fiber_id":2440,"pid":129,"subject":"Async::Task","object_id":2448,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":180,"fiber_id":3128,"pid":180,"subject":"Async::Task","object_id":3136,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":189,"fiber_id":3656,"pid":189,"subject":"Async::Task","object_id":3664,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":174,"fiber_id":3352,"pid":174,"subject":"Async::Task","object_id":3360,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":39,"fiber_id":2248,"pid":39,"subject":"Async::Task","object_id":2256,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":90,"fiber_id":2424,"pid":90,"subject":"Async::Task","object_id":2432,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":153,"fiber_id":2872,"pid":153,"subject":"Async::Task","object_id":2880,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":24,"fiber_id":1800,"pid":24,"subject":"Async::Task","object_id":1808,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":126,"fiber_id":2728,"pid":126,"subject":"Async::Task","object_id":2736,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":111,"fiber_id":2648,"pid":111,"subject":"Async::Task","object_id":2656,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":141,"fiber_id":2920,"pid":141,"subject":"Async::Task","object_id":2928,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":90,"fiber_id":2440,"pid":90,"subject":"Async::Task","object_id":2448,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":93,"fiber_id":2664,"pid":93,"subject":"Async::Task","object_id":2672,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":144,"fiber_id":3112,"pid":144,"subject":"Async::Task","object_id":3120,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":75,"fiber_id":2360,"pid":75,"subject":"Async::Task","object_id":2368,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":120,"fiber_id":2616,"pid":120,"subject":"Async::Task","object_id":2624,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":129,"fiber_id":2456,"pid":129,"subject":"Async::Task","object_id":2464,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":12,"fiber_id":1864,"pid":12,"subject":"Async::Task","object_id":1872,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":78,"fiber_id":2744,"pid":78,"subject":"Async::Task","object_id":2752,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":66,"fiber_id":2216,"pid":66,"subject":"Async::Task","object_id":2224,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":36,"fiber_id":2200,"pid":36,"subject":"Async::Task","object_id":2208,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":51,"fiber_id":2312,"pid":51,"subject":"Async::Task","object_id":2320,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":129,"fiber_id":2472,"pid":129,"subject":"Async::Task","object_id":2480,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":48,"fiber_id":2216,"pid":48,"subject":"Async::Task","object_id":2224,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":93,"fiber_id":2680,"pid":93,"subject":"Async::Task","object_id":2688,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":153,"fiber_id":2888,"pid":153,"subject":"Async::Task","object_id":2896,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":144,"fiber_id":3128,"pid":144,"subject":"Async::Task","object_id":3136,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":126,"fiber_id":2744,"pid":126,"subject":"Async::Task","object_id":2752,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":69,"fiber_id":2120,"pid":69,"subject":"Async::Task","object_id":2128,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":168,"fiber_id":3048,"pid":168,"subject":"Async::Task","object_id":3056,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":105,"fiber_id":2376,"pid":105,"subject":"Async::Task","object_id":2384,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":120,"fiber_id":2632,"pid":120,"subject":"Async::Task","object_id":2640,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":84,"fiber_id":2312,"pid":84,"subject":"Async::Task","object_id":2320,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":63,"fiber_id":2120,"pid":63,"subject":"Async::Task","object_id":2128,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":165,"fiber_id":3064,"pid":165,"subject":"Async::Task","object_id":3072,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":21,"fiber_id":2088,"pid":21,"subject":"Async::Task","object_id":2096,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":57,"fiber_id":2008,"pid":57,"subject":"Async::Task","object_id":2016,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":81,"fiber_id":2520,"pid":81,"subject":"Async::Task","object_id":2528,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":195,"fiber_id":3224,"pid":195,"subject":"Async::Task","object_id":3232,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":123,"fiber_id":2584,"pid":123,"subject":"Async::Task","object_id":2592,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":36,"fiber_id":2216,"pid":36,"subject":"Async::Task","object_id":2224,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":54,"fiber_id":2440,"pid":54,"subject":"Async::Task","object_id":2448,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":93,"fiber_id":2696,"pid":93,"subject":"Async::Task","object_id":2704,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":102,"fiber_id":2552,"pid":102,"subject":"Async::Task","object_id":2560,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":33,"fiber_id":2152,"pid":33,"subject":"Async::Task","object_id":2160,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":168,"fiber_id":3064,"pid":168,"subject":"Async::Task","object_id":3072,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":45,"fiber_id":2264,"pid":45,"subject":"Async::Task","object_id":2272,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":66,"fiber_id":2328,"pid":66,"subject":"Async::Task","object_id":2336,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":57,"fiber_id":2024,"pid":57,"subject":"Async::Task","object_id":2032,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":33,"fiber_id":2168,"pid":33,"subject":"Async::Task","object_id":2176,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":156,"fiber_id":2872,"pid":156,"subject":"Async::Task","object_id":2880,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":177,"fiber_id":3240,"pid":177,"subject":"Async::Task","object_id":3248,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":66,"fiber_id":2344,"pid":66,"subject":"Async::Task","object_id":2352,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":36,"fiber_id":2232,"pid":36,"subject":"Async::Task","object_id":2240,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":24,"fiber_id":1816,"pid":24,"subject":"Async::Task","object_id":1824,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":99,"fiber_id":2408,"pid":99,"subject":"Async::Task","object_id":2416,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":150,"fiber_id":2744,"pid":150,"subject":"Async::Task","object_id":2752,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":165,"fiber_id":3080,"pid":165,"subject":"Async::Task","object_id":3088,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":24,"fiber_id":1832,"pid":24,"subject":"Async::Task","object_id":1840,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":132,"fiber_id":2744,"pid":132,"subject":"Async::Task","object_id":2752,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":159,"fiber_id":2920,"pid":159,"subject":"Async::Task","object_id":2928,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":66,"fiber_id":2360,"pid":66,"subject":"Async::Task","object_id":2368,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":84,"fiber_id":2328,"pid":84,"subject":"Async::Task","object_id":2336,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":18,"fiber_id":1992,"pid":18,"subject":"Async::Task","object_id":2000,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":63,"fiber_id":2136,"pid":63,"subject":"Async::Task","object_id":2144,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":129,"fiber_id":2488,"pid":129,"subject":"Async::Task","object_id":2496,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":186,"fiber_id":3208,"pid":186,"subject":"Async::Task","object_id":3216,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":18,"fiber_id":2008,"pid":18,"subject":"Async::Task","object_id":2016,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":168,"fiber_id":3016,"pid":168,"subject":"Async::Task","object_id":3024,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":30,"fiber_id":2120,"pid":30,"subject":"Async::Task","object_id":2128,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":96,"fiber_id":2536,"pid":96,"subject":"Async::Task","object_id":2544,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":21,"fiber_id":2152,"pid":21,"subject":"Async::Task","object_id":2160,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":180,"fiber_id":3144,"pid":180,"subject":"Async::Task","object_id":3152,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":195,"fiber_id":3240,"pid":195,"subject":"Async::Task","object_id":3248,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":192,"fiber_id":3240,"pid":192,"subject":"Async::Task","object_id":3248,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":45,"fiber_id":2280,"pid":45,"subject":"Async::Task","object_id":2288,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":39,"fiber_id":2264,"pid":39,"subject":"Async::Task","object_id":2272,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":141,"fiber_id":2936,"pid":141,"subject":"Async::Task","object_id":2944,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":54,"fiber_id":2456,"pid":54,"subject":"Async::Task","object_id":2464,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":66,"fiber_id":2376,"pid":66,"subject":"Async::Task","object_id":2384,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":189,"fiber_id":3672,"pid":189,"subject":"Async::Task","object_id":3680,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":96,"fiber_id":2552,"pid":96,"subject":"Async::Task","object_id":2560,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":129,"fiber_id":2504,"pid":129,"subject":"Async::Task","object_id":2512,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":153,"fiber_id":2904,"pid":153,"subject":"Async::Task","object_id":2912,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":102,"fiber_id":2568,"pid":102,"subject":"Async::Task","object_id":2576,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":192,"fiber_id":3256,"pid":192,"subject":"Async::Task","object_id":3264,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":33,"fiber_id":2184,"pid":33,"subject":"Async::Task","object_id":2192,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":123,"fiber_id":2600,"pid":123,"subject":"Async::Task","object_id":2608,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":39,"fiber_id":2280,"pid":39,"subject":"Async::Task","object_id":2288,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":126,"fiber_id":2760,"pid":126,"subject":"Async::Task","object_id":2768,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":84,"fiber_id":2344,"pid":84,"subject":"Async::Task","object_id":2352,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":189,"fiber_id":3688,"pid":189,"subject":"Async::Task","object_id":3696,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":90,"fiber_id":2456,"pid":90,"subject":"Async::Task","object_id":2464,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":12,"fiber_id":1880,"pid":12,"subject":"Async::Task","object_id":1888,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":63,"fiber_id":2152,"pid":63,"subject":"Async::Task","object_id":2160,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":165,"fiber_id":3096,"pid":165,"subject":"Async::Task","object_id":3104,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":105,"fiber_id":2392,"pid":105,"subject":"Async::Task","object_id":2400,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":186,"fiber_id":3224,"pid":186,"subject":"Async::Task","object_id":3232,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":18,"fiber_id":2024,"pid":18,"subject":"Async::Task","object_id":2032,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":15,"fiber_id":1720,"pid":15,"subject":"Async::Task","object_id":1728,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":126,"fiber_id":2776,"pid":126,"subject":"Async::Task","object_id":2784,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":129,"fiber_id":2520,"pid":129,"subject":"Async::Task","object_id":2528,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":123,"fiber_id":2616,"pid":123,"subject":"Async::Task","object_id":2624,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":54,"fiber_id":2472,"pid":54,"subject":"Async::Task","object_id":2480,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":141,"fiber_id":2952,"pid":141,"subject":"Async::Task","object_id":2960,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":108,"fiber_id":2504,"pid":108,"subject":"Async::Task","object_id":2512,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":90,"fiber_id":2472,"pid":90,"subject":"Async::Task","object_id":2480,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":189,"fiber_id":3704,"pid":189,"subject":"Async::Task","object_id":3712,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":141,"fiber_id":2968,"pid":141,"subject":"Async::Task","object_id":2976,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":39,"fiber_id":2296,"pid":39,"subject":"Async::Task","object_id":2304,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":129,"fiber_id":2536,"pid":129,"subject":"Async::Task","object_id":2544,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":45,"fiber_id":2296,"pid":45,"subject":"Async::Task","object_id":2304,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":120,"fiber_id":2648,"pid":120,"subject":"Async::Task","object_id":2656,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":93,"fiber_id":2712,"pid":93,"subject":"Async::Task","object_id":2720,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":57,"fiber_id":2040,"pid":57,"subject":"Async::Task","object_id":2048,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":111,"fiber_id":2664,"pid":111,"subject":"Async::Task","object_id":2672,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":99,"fiber_id":2424,"pid":99,"subject":"Async::Task","object_id":2432,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":126,"fiber_id":2792,"pid":126,"subject":"Async::Task","object_id":2800,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":30,"fiber_id":2136,"pid":30,"subject":"Async::Task","object_id":2144,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":141,"fiber_id":2984,"pid":141,"subject":"Async::Task","object_id":2992,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":168,"fiber_id":3080,"pid":168,"subject":"Async::Task","object_id":3088,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":105,"fiber_id":2408,"pid":105,"subject":"Async::Task","object_id":2416,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":84,"fiber_id":2360,"pid":84,"subject":"Async::Task","object_id":2368,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":66,"fiber_id":2392,"pid":66,"subject":"Async::Task","object_id":2400,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":51,"fiber_id":2328,"pid":51,"subject":"Async::Task","object_id":2336,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":159,"fiber_id":2936,"pid":159,"subject":"Async::Task","object_id":2944,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":114,"fiber_id":2664,"pid":114,"subject":"Async::Task","object_id":2672,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":174,"fiber_id":3368,"pid":174,"subject":"Async::Task","object_id":3376,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":69,"fiber_id":2136,"pid":69,"subject":"Async::Task","object_id":2144,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":60,"fiber_id":2360,"pid":60,"subject":"Async::Task","object_id":2368,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":63,"fiber_id":2168,"pid":63,"subject":"Async::Task","object_id":2176,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":156,"fiber_id":2888,"pid":156,"subject":"Async::Task","object_id":2896,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":81,"fiber_id":2536,"pid":81,"subject":"Async::Task","object_id":2544,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":90,"fiber_id":2488,"pid":90,"subject":"Async::Task","object_id":2496,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":84,"fiber_id":2376,"pid":84,"subject":"Async::Task","object_id":2384,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":66,"fiber_id":2408,"pid":66,"subject":"Async::Task","object_id":2416,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":21,"fiber_id":2168,"pid":21,"subject":"Async::Task","object_id":2176,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":30,"fiber_id":2072,"pid":30,"subject":"Async::Task","object_id":2080,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":138,"fiber_id":2856,"pid":138,"subject":"Async::Task","object_id":2864,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":39,"fiber_id":2312,"pid":39,"subject":"Async::Task","object_id":2320,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":105,"fiber_id":2424,"pid":105,"subject":"Async::Task","object_id":2432,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":168,"fiber_id":3032,"pid":168,"subject":"Async::Task","object_id":3040,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":90,"fiber_id":2504,"pid":90,"subject":"Async::Task","object_id":2512,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":153,"fiber_id":2920,"pid":153,"subject":"Async::Task","object_id":2928,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":45,"fiber_id":2312,"pid":45,"subject":"Async::Task","object_id":2320,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":111,"fiber_id":2680,"pid":111,"subject":"Async::Task","object_id":2688,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":135,"fiber_id":2696,"pid":135,"subject":"Async::Task","object_id":2704,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":102,"fiber_id":2584,"pid":102,"subject":"Async::Task","object_id":2592,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":105,"fiber_id":2440,"pid":105,"subject":"Async::Task","object_id":2448,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":66,"fiber_id":2424,"pid":66,"subject":"Async::Task","object_id":2432,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":21,"fiber_id":2104,"pid":21,"subject":"Async::Task","object_id":2112,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":123,"fiber_id":2632,"pid":123,"subject":"Async::Task","object_id":2640,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":153,"fiber_id":2936,"pid":153,"subject":"Async::Task","object_id":2944,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":150,"fiber_id":2760,"pid":150,"subject":"Async::Task","object_id":2768,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":66,"fiber_id":2232,"pid":66,"subject":"Async::Task","object_id":2240,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":105,"fiber_id":2456,"pid":105,"subject":"Async::Task","object_id":2464,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":192,"fiber_id":3272,"pid":192,"subject":"Async::Task","object_id":3280,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":39,"fiber_id":2328,"pid":39,"subject":"Async::Task","object_id":2336,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":171,"fiber_id":3144,"pid":171,"subject":"Async::Task","object_id":3152,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":186,"fiber_id":3240,"pid":186,"subject":"Async::Task","object_id":3248,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":84,"fiber_id":2392,"pid":84,"subject":"Async::Task","object_id":2400,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":153,"fiber_id":2952,"pid":153,"subject":"Async::Task","object_id":2960,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":195,"fiber_id":3256,"pid":195,"subject":"Async::Task","object_id":3264,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":90,"fiber_id":2520,"pid":90,"subject":"Async::Task","object_id":2528,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":15,"fiber_id":1832,"pid":15,"subject":"Async::Task","object_id":1840,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":165,"fiber_id":3112,"pid":165,"subject":"Async::Task","object_id":3120,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":123,"fiber_id":2648,"pid":123,"subject":"Async::Task","object_id":2656,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":174,"fiber_id":3384,"pid":174,"subject":"Async::Task","object_id":3392,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":153,"fiber_id":2968,"pid":153,"subject":"Async::Task","object_id":2976,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":138,"fiber_id":2872,"pid":138,"subject":"Async::Task","object_id":2880,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":165,"fiber_id":3128,"pid":165,"subject":"Async::Task","object_id":3136,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":18,"fiber_id":2040,"pid":18,"subject":"Async::Task","object_id":2048,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":150,"fiber_id":2776,"pid":150,"subject":"Async::Task","object_id":2784,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":51,"fiber_id":2344,"pid":51,"subject":"Async::Task","object_id":2352,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":72,"fiber_id":2424,"pid":72,"subject":"Async::Task","object_id":2432,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":114,"fiber_id":2680,"pid":114,"subject":"Async::Task","object_id":2688,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":168,"fiber_id":3096,"pid":168,"subject":"Async::Task","object_id":3104,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":21,"fiber_id":2120,"pid":21,"subject":"Async::Task","object_id":2128,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":66,"fiber_id":2248,"pid":66,"subject":"Async::Task","object_id":2256,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":66,"fiber_id":2264,"pid":66,"subject":"Async::Task","object_id":2272,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":150,"fiber_id":2792,"pid":150,"subject":"Async::Task","object_id":2800,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":51,"fiber_id":2360,"pid":51,"subject":"Async::Task","object_id":2368,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":66,"fiber_id":2280,"pid":66,"subject":"Async::Task","object_id":2288,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":129,"fiber_id":2552,"pid":129,"subject":"Async::Task","object_id":2560,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":162,"fiber_id":2936,"pid":162,"subject":"Async::Task","object_id":2944,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":171,"fiber_id":3272,"pid":171,"subject":"Async::Task","object_id":3280,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":90,"fiber_id":2536,"pid":90,"subject":"Async::Task","object_id":2544,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":108,"fiber_id":2552,"pid":108,"subject":"Async::Task","object_id":2560,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":24,"fiber_id":1848,"pid":24,"subject":"Async::Task","object_id":1856,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":66,"fiber_id":2440,"pid":66,"subject":"Async::Task","object_id":2448,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":126,"fiber_id":2808,"pid":126,"subject":"Async::Task","object_id":2816,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":66,"fiber_id":2296,"pid":66,"subject":"Async::Task","object_id":2304,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":108,"fiber_id":2568,"pid":108,"subject":"Async::Task","object_id":2576,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":60,"fiber_id":2344,"pid":60,"subject":"Async::Task","object_id":2352,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":90,"fiber_id":2552,"pid":90,"subject":"Async::Task","object_id":2560,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":48,"fiber_id":2232,"pid":48,"subject":"Async::Task","object_id":2240,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":21,"fiber_id":2136,"pid":21,"subject":"Async::Task","object_id":2144,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":108,"fiber_id":2520,"pid":108,"subject":"Async::Task","object_id":2528,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":153,"fiber_id":2984,"pid":153,"subject":"Async::Task","object_id":2992,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":15,"fiber_id":1736,"pid":15,"subject":"Async::Task","object_id":1744,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":171,"fiber_id":3288,"pid":171,"subject":"Async::Task","object_id":3296,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":108,"fiber_id":2536,"pid":108,"subject":"Async::Task","object_id":2544,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":105,"fiber_id":2472,"pid":105,"subject":"Async::Task","object_id":2480,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":174,"fiber_id":3400,"pid":174,"subject":"Async::Task","object_id":3408,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":66,"fiber_id":2312,"pid":66,"subject":"Async::Task","object_id":2320,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":81,"fiber_id":2552,"pid":81,"subject":"Async::Task","object_id":2560,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":114,"fiber_id":2696,"pid":114,"subject":"Async::Task","object_id":2704,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":84,"fiber_id":2408,"pid":84,"subject":"Async::Task","object_id":2416,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":90,"fiber_id":2568,"pid":90,"subject":"Async::Task","object_id":2576,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":39,"fiber_id":2344,"pid":39,"subject":"Async::Task","object_id":2352,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":123,"fiber_id":2664,"pid":123,"subject":"Async::Task","object_id":2672,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":135,"fiber_id":2712,"pid":135,"subject":"Async::Task","object_id":2720,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":33,"fiber_id":2200,"pid":33,"subject":"Async::Task","object_id":2208,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":63,"fiber_id":2184,"pid":63,"subject":"Async::Task","object_id":2192,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":105,"fiber_id":2488,"pid":105,"subject":"Async::Task","object_id":2496,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":18,"fiber_id":2056,"pid":18,"subject":"Async::Task","object_id":2064,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":180,"fiber_id":3160,"pid":180,"subject":"Async::Task","object_id":3168,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":102,"fiber_id":2600,"pid":102,"subject":"Async::Task","object_id":2608,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":120,"fiber_id":2664,"pid":120,"subject":"Async::Task","object_id":2672,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":48,"fiber_id":2248,"pid":48,"subject":"Async::Task","object_id":2256,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":156,"fiber_id":2904,"pid":156,"subject":"Async::Task","object_id":2912,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":174,"fiber_id":3416,"pid":174,"subject":"Async::Task","object_id":3424,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":114,"fiber_id":2712,"pid":114,"subject":"Async::Task","object_id":2720,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":60,"fiber_id":2456,"pid":60,"subject":"Async::Task","object_id":2464,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":156,"fiber_id":2920,"pid":156,"subject":"Async::Task","object_id":2928,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":90,"fiber_id":2584,"pid":90,"subject":"Async::Task","object_id":2592,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":24,"fiber_id":1864,"pid":24,"subject":"Async::Task","object_id":1872,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":18,"fiber_id":2072,"pid":18,"subject":"Async::Task","object_id":2080,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":156,"fiber_id":2936,"pid":156,"subject":"Async::Task","object_id":2944,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":105,"fiber_id":2504,"pid":105,"subject":"Async::Task","object_id":2512,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":102,"fiber_id":2616,"pid":102,"subject":"Async::Task","object_id":2624,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":66,"fiber_id":2456,"pid":66,"subject":"Async::Task","object_id":2464,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":69,"fiber_id":2152,"pid":69,"subject":"Async::Task","object_id":2160,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":15,"fiber_id":1752,"pid":15,"subject":"Async::Task","object_id":1760,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":48,"fiber_id":2264,"pid":48,"subject":"Async::Task","object_id":2272,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":30,"fiber_id":2152,"pid":30,"subject":"Async::Task","object_id":2160,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":171,"fiber_id":3160,"pid":171,"subject":"Async::Task","object_id":3168,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":156,"fiber_id":2952,"pid":156,"subject":"Async::Task","object_id":2960,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":177,"fiber_id":3256,"pid":177,"subject":"Async::Task","object_id":3264,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":57,"fiber_id":2056,"pid":57,"subject":"Async::Task","object_id":2064,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":144,"fiber_id":3144,"pid":144,"subject":"Async::Task","object_id":3152,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":12,"fiber_id":1896,"pid":12,"subject":"Async::Task","object_id":1904,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":90,"fiber_id":2600,"pid":90,"subject":"Async::Task","object_id":2608,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":60,"fiber_id":2472,"pid":60,"subject":"Async::Task","object_id":2480,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":105,"fiber_id":2520,"pid":105,"subject":"Async::Task","object_id":2528,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":69,"fiber_id":2168,"pid":69,"subject":"Async::Task","object_id":2176,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":72,"fiber_id":2440,"pid":72,"subject":"Async::Task","object_id":2448,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":153,"fiber_id":3000,"pid":153,"subject":"Async::Task","object_id":3008,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":135,"fiber_id":2728,"pid":135,"subject":"Async::Task","object_id":2736,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":162,"fiber_id":3016,"pid":162,"subject":"Async::Task","object_id":3024,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":60,"fiber_id":2488,"pid":60,"subject":"Async::Task","object_id":2496,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":129,"fiber_id":2568,"pid":129,"subject":"Async::Task","object_id":2576,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":69,"fiber_id":2184,"pid":69,"subject":"Async::Task","object_id":2192,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":24,"fiber_id":1880,"pid":24,"subject":"Async::Task","object_id":1888,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":144,"fiber_id":3160,"pid":144,"subject":"Async::Task","object_id":3168,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":162,"fiber_id":3032,"pid":162,"subject":"Async::Task","object_id":3040,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":72,"fiber_id":2456,"pid":72,"subject":"Async::Task","object_id":2464,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":81,"fiber_id":2568,"pid":81,"subject":"Async::Task","object_id":2576,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":60,"fiber_id":2504,"pid":60,"subject":"Async::Task","object_id":2512,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":171,"fiber_id":3176,"pid":171,"subject":"Async::Task","object_id":3184,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":15,"fiber_id":1768,"pid":15,"subject":"Async::Task","object_id":1776,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":90,"fiber_id":2616,"pid":90,"subject":"Async::Task","object_id":2624,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":165,"fiber_id":3144,"pid":165,"subject":"Async::Task","object_id":3152,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":171,"fiber_id":3304,"pid":171,"subject":"Async::Task","object_id":3312,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":129,"fiber_id":2584,"pid":129,"subject":"Async::Task","object_id":2592,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":144,"fiber_id":3176,"pid":144,"subject":"Async::Task","object_id":3184,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":162,"fiber_id":2952,"pid":162,"subject":"Async::Task","object_id":2960,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":174,"fiber_id":3432,"pid":174,"subject":"Async::Task","object_id":3440,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":153,"fiber_id":3016,"pid":153,"subject":"Async::Task","object_id":3024,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":102,"fiber_id":2632,"pid":102,"subject":"Async::Task","object_id":2640,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":171,"fiber_id":3192,"pid":171,"subject":"Async::Task","object_id":3200,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":57,"fiber_id":2072,"pid":57,"subject":"Async::Task","object_id":2080,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":102,"fiber_id":2648,"pid":102,"subject":"Async::Task","object_id":2656,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":174,"fiber_id":3448,"pid":174,"subject":"Async::Task","object_id":3456,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":162,"fiber_id":2968,"pid":162,"subject":"Async::Task","object_id":2976,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":162,"fiber_id":2984,"pid":162,"subject":"Async::Task","object_id":2992,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":162,"fiber_id":3000,"pid":162,"subject":"Async::Task","object_id":3008,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":15,"fiber_id":1784,"pid":15,"subject":"Async::Task","object_id":1792,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":60,"fiber_id":2376,"pid":60,"subject":"Async::Task","object_id":2384,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":171,"fiber_id":3208,"pid":171,"subject":"Async::Task","object_id":3216,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":144,"fiber_id":3192,"pid":144,"subject":"Async::Task","object_id":3200,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":174,"fiber_id":3464,"pid":174,"subject":"Async::Task","object_id":3472,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":60,"fiber_id":2392,"pid":60,"subject":"Async::Task","object_id":2400,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":15,"fiber_id":1800,"pid":15,"subject":"Async::Task","object_id":1808,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":171,"fiber_id":3224,"pid":171,"subject":"Async::Task","object_id":3232,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":171,"fiber_id":3240,"pid":171,"subject":"Async::Task","object_id":3248,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":171,"fiber_id":3256,"pid":171,"subject":"Async::Task","object_id":3264,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":24,"fiber_id":1896,"pid":24,"subject":"Async::Task","object_id":1904,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":72,"fiber_id":2472,"pid":72,"subject":"Async::Task","object_id":2480,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":60,"fiber_id":2408,"pid":60,"subject":"Async::Task","object_id":2416,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":60,"fiber_id":2424,"pid":60,"subject":"Async::Task","object_id":2432,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":15,"fiber_id":1816,"pid":15,"subject":"Async::Task","object_id":1824,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":60,"fiber_id":2440,"pid":60,"subject":"Async::Task","object_id":2448,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":144,"fiber_id":3208,"pid":144,"subject":"Async::Task","object_id":3216,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":24,"fiber_id":1912,"pid":24,"subject":"Async::Task","object_id":1920,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":69,"fiber_id":2200,"pid":69,"subject":"Async::Task","object_id":2208,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":15,"fiber_id":1848,"pid":15,"subject":"Async::Task","object_id":1856,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":69,"fiber_id":2216,"pid":69,"subject":"Async::Task","object_id":2224,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":24,"fiber_id":1928,"pid":24,"subject":"Async::Task","object_id":1936,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":69,"fiber_id":2232,"pid":69,"subject":"Async::Task","object_id":2240,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":69,"fiber_id":2248,"pid":69,"subject":"Async::Task","object_id":2256,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":15,"fiber_id":1864,"pid":15,"subject":"Async::Task","object_id":1872,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":60,"fiber_id":2520,"pid":60,"subject":"Async::Task","object_id":2528,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":60,"fiber_id":2328,"pid":60,"subject":"Async::Task","object_id":2336,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":174,"fiber_id":3480,"pid":174,"subject":"Async::Task","object_id":3488,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":15,"fiber_id":1880,"pid":15,"subject":"Async::Task","object_id":1888,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":129,"fiber_id":2600,"pid":129,"subject":"Async::Task","object_id":2608,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":60,"fiber_id":2536,"pid":60,"subject":"Async::Task","object_id":2544,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":60,"fiber_id":2552,"pid":60,"subject":"Async::Task","object_id":2560,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":60,"fiber_id":2568,"pid":60,"subject":"Async::Task","object_id":2576,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":60,"fiber_id":2584,"pid":60,"subject":"Async::Task","object_id":2592,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":24,"fiber_id":1944,"pid":24,"subject":"Async::Task","object_id":1952,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":24,"fiber_id":1960,"pid":24,"subject":"Async::Task","object_id":1968,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":24,"fiber_id":1976,"pid":24,"subject":"Async::Task","object_id":1984,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":24,"fiber_id":1992,"pid":24,"subject":"Async::Task","object_id":2000,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:27+00:00","severity":"warn","process_id":144,"fiber_id":3224,"pid":144,"subject":"Async::Task","object_id":3232,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":114,"fiber_id":2728,"pid":114,"subject":"Async::Task","object_id":2736,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":78,"fiber_id":2760,"pid":78,"subject":"Async::Task","object_id":2768,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":30,"fiber_id":2168,"pid":30,"subject":"Async::Task","object_id":2176,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":9,"fiber_id":2104,"pid":9,"subject":"Async::Task","object_id":2112,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":126,"fiber_id":2824,"pid":126,"subject":"Async::Task","object_id":2832,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":180,"fiber_id":3176,"pid":180,"subject":"Async::Task","object_id":3184,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":114,"fiber_id":2744,"pid":114,"subject":"Async::Task","object_id":2752,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":126,"fiber_id":2840,"pid":126,"subject":"Async::Task","object_id":2848,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":114,"fiber_id":2760,"pid":114,"subject":"Async::Task","object_id":2768,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":180,"fiber_id":3192,"pid":180,"subject":"Async::Task","object_id":3200,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":9,"fiber_id":2120,"pid":9,"subject":"Async::Task","object_id":2128,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":114,"fiber_id":2776,"pid":114,"subject":"Async::Task","object_id":2784,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":123,"fiber_id":2680,"pid":123,"subject":"Async::Task","object_id":2688,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":123,"fiber_id":2696,"pid":123,"subject":"Async::Task","object_id":2704,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":120,"fiber_id":2680,"pid":120,"subject":"Async::Task","object_id":2688,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":75,"fiber_id":2376,"pid":75,"subject":"Async::Task","object_id":2384,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":171,"fiber_id":3320,"pid":171,"subject":"Async::Task","object_id":3328,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":126,"fiber_id":2856,"pid":126,"subject":"Async::Task","object_id":2864,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":156,"fiber_id":2968,"pid":156,"subject":"Async::Task","object_id":2976,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":138,"fiber_id":2888,"pid":138,"subject":"Async::Task","object_id":2896,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":24,"fiber_id":2008,"pid":24,"subject":"Async::Task","object_id":2016,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":12,"fiber_id":1912,"pid":12,"subject":"Async::Task","object_id":1920,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":54,"fiber_id":2488,"pid":54,"subject":"Async::Task","object_id":2496,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":135,"fiber_id":2744,"pid":135,"subject":"Async::Task","object_id":2752,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":195,"fiber_id":3272,"pid":195,"subject":"Async::Task","object_id":3280,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":18,"fiber_id":2088,"pid":18,"subject":"Async::Task","object_id":2096,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":138,"fiber_id":2904,"pid":138,"subject":"Async::Task","object_id":2912,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":24,"fiber_id":2024,"pid":24,"subject":"Async::Task","object_id":2032,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":54,"fiber_id":2504,"pid":54,"subject":"Async::Task","object_id":2512,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":93,"fiber_id":2728,"pid":93,"subject":"Async::Task","object_id":2736,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":195,"fiber_id":3288,"pid":195,"subject":"Async::Task","object_id":3296,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":168,"fiber_id":3112,"pid":168,"subject":"Async::Task","object_id":3120,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":117,"fiber_id":2392,"pid":117,"subject":"Async::Task","object_id":2400,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":99,"fiber_id":2440,"pid":99,"subject":"Async::Task","object_id":2448,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":18,"fiber_id":2104,"pid":18,"subject":"Async::Task","object_id":2112,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":138,"fiber_id":2920,"pid":138,"subject":"Async::Task","object_id":2928,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":51,"fiber_id":2376,"pid":51,"subject":"Async::Task","object_id":2384,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":138,"fiber_id":2936,"pid":138,"subject":"Async::Task","object_id":2944,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":195,"fiber_id":3304,"pid":195,"subject":"Async::Task","object_id":3312,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":162,"fiber_id":3048,"pid":162,"subject":"Async::Task","object_id":3056,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":15,"fiber_id":1896,"pid":15,"subject":"Async::Task","object_id":1904,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":129,"fiber_id":2616,"pid":129,"subject":"Async::Task","object_id":2624,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":72,"fiber_id":2488,"pid":72,"subject":"Async::Task","object_id":2496,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":132,"fiber_id":2760,"pid":132,"subject":"Async::Task","object_id":2768,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":186,"fiber_id":3256,"pid":186,"subject":"Async::Task","object_id":3264,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":75,"fiber_id":2392,"pid":75,"subject":"Async::Task","object_id":2400,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":108,"fiber_id":2584,"pid":108,"subject":"Async::Task","object_id":2592,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":138,"fiber_id":2952,"pid":138,"subject":"Async::Task","object_id":2960,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":15,"fiber_id":1912,"pid":15,"subject":"Async::Task","object_id":1920,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":177,"fiber_id":3272,"pid":177,"subject":"Async::Task","object_id":3280,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":150,"fiber_id":2808,"pid":150,"subject":"Async::Task","object_id":2816,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":195,"fiber_id":3320,"pid":195,"subject":"Async::Task","object_id":3328,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":15,"fiber_id":1928,"pid":15,"subject":"Async::Task","object_id":1936,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":150,"fiber_id":2824,"pid":150,"subject":"Async::Task","object_id":2832,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":45,"fiber_id":2328,"pid":45,"subject":"Async::Task","object_id":2336,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":171,"fiber_id":3336,"pid":171,"subject":"Async::Task","object_id":3344,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":15,"fiber_id":1944,"pid":15,"subject":"Async::Task","object_id":1952,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":36,"fiber_id":2248,"pid":36,"subject":"Async::Task","object_id":2256,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":51,"fiber_id":2392,"pid":51,"subject":"Async::Task","object_id":2400,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":138,"fiber_id":2968,"pid":138,"subject":"Async::Task","object_id":2976,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":123,"fiber_id":2712,"pid":123,"subject":"Async::Task","object_id":2720,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":117,"fiber_id":2408,"pid":117,"subject":"Async::Task","object_id":2416,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":24,"fiber_id":2040,"pid":24,"subject":"Async::Task","object_id":2048,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":129,"fiber_id":2632,"pid":129,"subject":"Async::Task","object_id":2640,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":21,"fiber_id":2184,"pid":21,"subject":"Async::Task","object_id":2192,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":84,"fiber_id":2424,"pid":84,"subject":"Async::Task","object_id":2432,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":192,"fiber_id":3288,"pid":192,"subject":"Async::Task","object_id":3296,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":162,"fiber_id":3064,"pid":162,"subject":"Async::Task","object_id":3072,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":120,"fiber_id":2696,"pid":120,"subject":"Async::Task","object_id":2704,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":189,"fiber_id":3720,"pid":189,"subject":"Async::Task","object_id":3728,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":93,"fiber_id":2744,"pid":93,"subject":"Async::Task","object_id":2752,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":120,"fiber_id":2712,"pid":120,"subject":"Async::Task","object_id":2720,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":54,"fiber_id":2520,"pid":54,"subject":"Async::Task","object_id":2528,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":156,"fiber_id":2984,"pid":156,"subject":"Async::Task","object_id":2992,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":120,"fiber_id":2728,"pid":120,"subject":"Async::Task","object_id":2736,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":126,"fiber_id":2872,"pid":126,"subject":"Async::Task","object_id":2880,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":36,"fiber_id":2264,"pid":36,"subject":"Async::Task","object_id":2272,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":66,"fiber_id":2472,"pid":66,"subject":"Async::Task","object_id":2480,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":126,"fiber_id":2888,"pid":126,"subject":"Async::Task","object_id":2896,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":114,"fiber_id":2792,"pid":114,"subject":"Async::Task","object_id":2800,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":60,"fiber_id":2600,"pid":60,"subject":"Async::Task","object_id":2608,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":9,"fiber_id":2136,"pid":9,"subject":"Async::Task","object_id":2144,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":30,"fiber_id":2184,"pid":30,"subject":"Async::Task","object_id":2192,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":66,"fiber_id":2488,"pid":66,"subject":"Async::Task","object_id":2496,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":117,"fiber_id":2424,"pid":117,"subject":"Async::Task","object_id":2432,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":84,"fiber_id":2440,"pid":84,"subject":"Async::Task","object_id":2448,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":114,"fiber_id":2808,"pid":114,"subject":"Async::Task","object_id":2816,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":144,"fiber_id":3240,"pid":144,"subject":"Async::Task","object_id":3248,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":30,"fiber_id":2200,"pid":30,"subject":"Async::Task","object_id":2208,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":66,"fiber_id":2504,"pid":66,"subject":"Async::Task","object_id":2512,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":9,"fiber_id":2152,"pid":9,"subject":"Async::Task","object_id":2160,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":180,"fiber_id":3208,"pid":180,"subject":"Async::Task","object_id":3216,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":198,"fiber_id":3288,"pid":198,"subject":"Async::Task","object_id":3296,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":60,"fiber_id":2616,"pid":60,"subject":"Async::Task","object_id":2624,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":135,"fiber_id":2760,"pid":135,"subject":"Async::Task","object_id":2768,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":114,"fiber_id":2824,"pid":114,"subject":"Async::Task","object_id":2832,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":66,"fiber_id":2520,"pid":66,"subject":"Async::Task","object_id":2528,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":63,"fiber_id":2200,"pid":63,"subject":"Async::Task","object_id":2208,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":9,"fiber_id":2168,"pid":9,"subject":"Async::Task","object_id":2176,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":30,"fiber_id":2216,"pid":30,"subject":"Async::Task","object_id":2224,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":75,"fiber_id":2408,"pid":75,"subject":"Async::Task","object_id":2416,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":75,"fiber_id":2424,"pid":75,"subject":"Async::Task","object_id":2432,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":75,"fiber_id":2440,"pid":75,"subject":"Async::Task","object_id":2448,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":114,"fiber_id":2840,"pid":114,"subject":"Async::Task","object_id":2848,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":123,"fiber_id":2728,"pid":123,"subject":"Async::Task","object_id":2736,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":186,"fiber_id":3272,"pid":186,"subject":"Async::Task","object_id":3280,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":99,"fiber_id":2456,"pid":99,"subject":"Async::Task","object_id":2464,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":75,"fiber_id":2456,"pid":75,"subject":"Async::Task","object_id":2464,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":192,"fiber_id":3304,"pid":192,"subject":"Async::Task","object_id":3312,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":123,"fiber_id":2744,"pid":123,"subject":"Async::Task","object_id":2752,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":39,"fiber_id":2360,"pid":39,"subject":"Async::Task","object_id":2368,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":117,"fiber_id":2440,"pid":117,"subject":"Async::Task","object_id":2448,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":75,"fiber_id":2472,"pid":75,"subject":"Async::Task","object_id":2480,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":99,"fiber_id":2472,"pid":99,"subject":"Async::Task","object_id":2480,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":162,"fiber_id":3080,"pid":162,"subject":"Async::Task","object_id":3088,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":39,"fiber_id":2376,"pid":39,"subject":"Async::Task","object_id":2384,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":72,"fiber_id":2504,"pid":72,"subject":"Async::Task","object_id":2512,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":198,"fiber_id":3304,"pid":198,"subject":"Async::Task","object_id":3312,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":12,"fiber_id":1928,"pid":12,"subject":"Async::Task","object_id":1936,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":78,"fiber_id":2776,"pid":78,"subject":"Async::Task","object_id":2784,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":75,"fiber_id":2488,"pid":75,"subject":"Async::Task","object_id":2496,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":39,"fiber_id":2392,"pid":39,"subject":"Async::Task","object_id":2400,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":54,"fiber_id":2536,"pid":54,"subject":"Async::Task","object_id":2544,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":78,"fiber_id":2792,"pid":78,"subject":"Async::Task","object_id":2800,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":123,"fiber_id":2760,"pid":123,"subject":"Async::Task","object_id":2768,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":39,"fiber_id":2408,"pid":39,"subject":"Async::Task","object_id":2416,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":54,"fiber_id":2552,"pid":54,"subject":"Async::Task","object_id":2560,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":78,"fiber_id":2808,"pid":78,"subject":"Async::Task","object_id":2816,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":72,"fiber_id":2520,"pid":72,"subject":"Async::Task","object_id":2528,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":48,"fiber_id":2280,"pid":48,"subject":"Async::Task","object_id":2288,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":162,"fiber_id":3096,"pid":162,"subject":"Async::Task","object_id":3104,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":75,"fiber_id":2504,"pid":75,"subject":"Async::Task","object_id":2512,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":39,"fiber_id":2424,"pid":39,"subject":"Async::Task","object_id":2432,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":54,"fiber_id":2568,"pid":54,"subject":"Async::Task","object_id":2576,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":78,"fiber_id":2824,"pid":78,"subject":"Async::Task","object_id":2832,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":108,"fiber_id":2600,"pid":108,"subject":"Async::Task","object_id":2608,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":24,"fiber_id":2056,"pid":24,"subject":"Async::Task","object_id":2064,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":48,"fiber_id":2296,"pid":48,"subject":"Async::Task","object_id":2304,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":75,"fiber_id":2520,"pid":75,"subject":"Async::Task","object_id":2528,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":72,"fiber_id":2536,"pid":72,"subject":"Async::Task","object_id":2544,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":39,"fiber_id":2440,"pid":39,"subject":"Async::Task","object_id":2448,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":54,"fiber_id":2584,"pid":54,"subject":"Async::Task","object_id":2592,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":78,"fiber_id":2840,"pid":78,"subject":"Async::Task","object_id":2848,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":75,"fiber_id":2536,"pid":75,"subject":"Async::Task","object_id":2544,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":48,"fiber_id":2312,"pid":48,"subject":"Async::Task","object_id":2320,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":72,"fiber_id":2552,"pid":72,"subject":"Async::Task","object_id":2560,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":183,"fiber_id":2824,"pid":183,"subject":"Async::Task","object_id":2832,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":39,"fiber_id":2456,"pid":39,"subject":"Async::Task","object_id":2464,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":75,"fiber_id":2552,"pid":75,"subject":"Async::Task","object_id":2560,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":87,"fiber_id":2280,"pid":87,"subject":"Async::Task","object_id":2288,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":72,"fiber_id":2568,"pid":72,"subject":"Async::Task","object_id":2576,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":48,"fiber_id":2328,"pid":48,"subject":"Async::Task","object_id":2336,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":75,"fiber_id":2568,"pid":75,"subject":"Async::Task","object_id":2576,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":195,"fiber_id":3336,"pid":195,"subject":"Async::Task","object_id":3344,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":153,"fiber_id":3032,"pid":153,"subject":"Async::Task","object_id":3040,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":183,"fiber_id":2840,"pid":183,"subject":"Async::Task","object_id":2848,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":75,"fiber_id":2584,"pid":75,"subject":"Async::Task","object_id":2592,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":48,"fiber_id":2344,"pid":48,"subject":"Async::Task","object_id":2352,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":195,"fiber_id":3352,"pid":195,"subject":"Async::Task","object_id":3360,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":153,"fiber_id":3048,"pid":153,"subject":"Async::Task","object_id":3056,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":39,"fiber_id":2472,"pid":39,"subject":"Async::Task","object_id":2480,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":90,"fiber_id":2632,"pid":90,"subject":"Async::Task","object_id":2640,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":75,"fiber_id":2600,"pid":75,"subject":"Async::Task","object_id":2608,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":183,"fiber_id":2856,"pid":183,"subject":"Async::Task","object_id":2864,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":54,"fiber_id":2600,"pid":54,"subject":"Async::Task","object_id":2608,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":162,"fiber_id":3112,"pid":162,"subject":"Async::Task","object_id":3120,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":90,"fiber_id":2648,"pid":90,"subject":"Async::Task","object_id":2656,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":144,"fiber_id":3256,"pid":144,"subject":"Async::Task","object_id":3264,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":39,"fiber_id":2488,"pid":39,"subject":"Async::Task","object_id":2496,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":183,"fiber_id":2872,"pid":183,"subject":"Async::Task","object_id":2880,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":75,"fiber_id":2616,"pid":75,"subject":"Async::Task","object_id":2624,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":195,"fiber_id":3368,"pid":195,"subject":"Async::Task","object_id":3376,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":132,"fiber_id":2776,"pid":132,"subject":"Async::Task","object_id":2784,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":63,"fiber_id":2216,"pid":63,"subject":"Async::Task","object_id":2224,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":84,"fiber_id":2456,"pid":84,"subject":"Async::Task","object_id":2464,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":93,"fiber_id":2760,"pid":93,"subject":"Async::Task","object_id":2768,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":90,"fiber_id":2664,"pid":90,"subject":"Async::Task","object_id":2672,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":195,"fiber_id":3384,"pid":195,"subject":"Async::Task","object_id":3392,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":39,"fiber_id":2504,"pid":39,"subject":"Async::Task","object_id":2512,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":75,"fiber_id":2632,"pid":75,"subject":"Async::Task","object_id":2640,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":132,"fiber_id":2792,"pid":132,"subject":"Async::Task","object_id":2800,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":138,"fiber_id":2984,"pid":138,"subject":"Async::Task","object_id":2992,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":90,"fiber_id":2680,"pid":90,"subject":"Async::Task","object_id":2688,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":156,"fiber_id":3000,"pid":156,"subject":"Async::Task","object_id":3008,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":129,"fiber_id":2648,"pid":129,"subject":"Async::Task","object_id":2656,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":51,"fiber_id":2408,"pid":51,"subject":"Async::Task","object_id":2416,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":90,"fiber_id":2696,"pid":90,"subject":"Async::Task","object_id":2704,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":75,"fiber_id":2648,"pid":75,"subject":"Async::Task","object_id":2656,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":96,"fiber_id":2568,"pid":96,"subject":"Async::Task","object_id":2576,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":132,"fiber_id":2808,"pid":132,"subject":"Async::Task","object_id":2816,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":141,"fiber_id":3000,"pid":141,"subject":"Async::Task","object_id":3008,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":39,"fiber_id":2520,"pid":39,"subject":"Async::Task","object_id":2528,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":21,"fiber_id":2200,"pid":21,"subject":"Async::Task","object_id":2208,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":165,"fiber_id":3160,"pid":165,"subject":"Async::Task","object_id":3168,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":90,"fiber_id":2712,"pid":90,"subject":"Async::Task","object_id":2720,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":129,"fiber_id":2664,"pid":129,"subject":"Async::Task","object_id":2672,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":75,"fiber_id":2664,"pid":75,"subject":"Async::Task","object_id":2672,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":12,"fiber_id":1944,"pid":12,"subject":"Async::Task","object_id":1952,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":132,"fiber_id":2824,"pid":132,"subject":"Async::Task","object_id":2832,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":93,"fiber_id":2776,"pid":93,"subject":"Async::Task","object_id":2784,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":153,"fiber_id":3064,"pid":153,"subject":"Async::Task","object_id":3072,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":102,"fiber_id":2664,"pid":102,"subject":"Async::Task","object_id":2672,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":156,"fiber_id":3016,"pid":156,"subject":"Async::Task","object_id":3024,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":48,"fiber_id":2360,"pid":48,"subject":"Async::Task","object_id":2368,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":39,"fiber_id":2536,"pid":39,"subject":"Async::Task","object_id":2544,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":90,"fiber_id":2728,"pid":90,"subject":"Async::Task","object_id":2736,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":165,"fiber_id":3176,"pid":165,"subject":"Async::Task","object_id":3184,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":75,"fiber_id":2680,"pid":75,"subject":"Async::Task","object_id":2688,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":27,"fiber_id":1640,"pid":27,"subject":"Async::Task","object_id":1648,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":132,"fiber_id":2840,"pid":132,"subject":"Async::Task","object_id":2848,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":57,"fiber_id":2088,"pid":57,"subject":"Async::Task","object_id":2096,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":156,"fiber_id":3032,"pid":156,"subject":"Async::Task","object_id":3040,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":51,"fiber_id":2424,"pid":51,"subject":"Async::Task","object_id":2432,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":90,"fiber_id":2744,"pid":90,"subject":"Async::Task","object_id":2752,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":75,"fiber_id":2696,"pid":75,"subject":"Async::Task","object_id":2704,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":30,"fiber_id":2232,"pid":30,"subject":"Async::Task","object_id":2240,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":99,"fiber_id":2488,"pid":99,"subject":"Async::Task","object_id":2496,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":108,"fiber_id":2616,"pid":108,"subject":"Async::Task","object_id":2624,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":132,"fiber_id":2856,"pid":132,"subject":"Async::Task","object_id":2864,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":75,"fiber_id":2712,"pid":75,"subject":"Async::Task","object_id":2720,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":15,"fiber_id":1960,"pid":15,"subject":"Async::Task","object_id":1968,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":117,"fiber_id":2456,"pid":117,"subject":"Async::Task","object_id":2464,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":189,"fiber_id":3736,"pid":189,"subject":"Async::Task","object_id":3744,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":174,"fiber_id":3496,"pid":174,"subject":"Async::Task","object_id":3504,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":81,"fiber_id":2584,"pid":81,"subject":"Async::Task","object_id":2592,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":129,"fiber_id":2680,"pid":129,"subject":"Async::Task","object_id":2688,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":90,"fiber_id":2760,"pid":90,"subject":"Async::Task","object_id":2768,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":120,"fiber_id":2744,"pid":120,"subject":"Async::Task","object_id":2752,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":63,"fiber_id":2232,"pid":63,"subject":"Async::Task","object_id":2240,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":78,"fiber_id":2856,"pid":78,"subject":"Async::Task","object_id":2864,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":189,"fiber_id":3752,"pid":189,"subject":"Async::Task","object_id":3760,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":75,"fiber_id":2728,"pid":75,"subject":"Async::Task","object_id":2736,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":15,"fiber_id":1976,"pid":15,"subject":"Async::Task","object_id":1984,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":90,"fiber_id":2776,"pid":90,"subject":"Async::Task","object_id":2784,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":93,"fiber_id":2792,"pid":93,"subject":"Async::Task","object_id":2800,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":117,"fiber_id":2472,"pid":117,"subject":"Async::Task","object_id":2480,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":75,"fiber_id":2744,"pid":75,"subject":"Async::Task","object_id":2752,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":180,"fiber_id":3224,"pid":180,"subject":"Async::Task","object_id":3232,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":90,"fiber_id":2792,"pid":90,"subject":"Async::Task","object_id":2800,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":129,"fiber_id":2696,"pid":129,"subject":"Async::Task","object_id":2704,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":174,"fiber_id":3512,"pid":174,"subject":"Async::Task","object_id":3520,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":87,"fiber_id":2296,"pid":87,"subject":"Async::Task","object_id":2304,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":21,"fiber_id":2216,"pid":21,"subject":"Async::Task","object_id":2224,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":144,"fiber_id":3272,"pid":144,"subject":"Async::Task","object_id":3280,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":189,"fiber_id":3768,"pid":189,"subject":"Async::Task","object_id":3776,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":75,"fiber_id":2760,"pid":75,"subject":"Async::Task","object_id":2768,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":90,"fiber_id":2808,"pid":90,"subject":"Async::Task","object_id":2816,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":147,"fiber_id":2600,"pid":147,"subject":"Async::Task","object_id":2608,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":81,"fiber_id":2600,"pid":81,"subject":"Async::Task","object_id":2608,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":87,"fiber_id":2312,"pid":87,"subject":"Async::Task","object_id":2320,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":126,"fiber_id":2904,"pid":126,"subject":"Async::Task","object_id":2912,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":75,"fiber_id":2776,"pid":75,"subject":"Async::Task","object_id":2784,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":21,"fiber_id":2232,"pid":21,"subject":"Async::Task","object_id":2240,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":90,"fiber_id":2824,"pid":90,"subject":"Async::Task","object_id":2832,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":57,"fiber_id":2104,"pid":57,"subject":"Async::Task","object_id":2112,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":198,"fiber_id":3320,"pid":198,"subject":"Async::Task","object_id":3328,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":120,"fiber_id":2760,"pid":120,"subject":"Async::Task","object_id":2768,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":75,"fiber_id":2792,"pid":75,"subject":"Async::Task","object_id":2800,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":102,"fiber_id":2680,"pid":102,"subject":"Async::Task","object_id":2688,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":126,"fiber_id":2920,"pid":126,"subject":"Async::Task","object_id":2928,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":45,"fiber_id":2344,"pid":45,"subject":"Async::Task","object_id":2352,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":144,"fiber_id":3288,"pid":144,"subject":"Async::Task","object_id":3296,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":114,"fiber_id":2856,"pid":114,"subject":"Async::Task","object_id":2864,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":60,"fiber_id":2632,"pid":60,"subject":"Async::Task","object_id":2640,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":30,"fiber_id":2248,"pid":30,"subject":"Async::Task","object_id":2256,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":90,"fiber_id":2840,"pid":90,"subject":"Async::Task","object_id":2848,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":51,"fiber_id":2440,"pid":51,"subject":"Async::Task","object_id":2448,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":189,"fiber_id":3784,"pid":189,"subject":"Async::Task","object_id":3792,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":75,"fiber_id":2808,"pid":75,"subject":"Async::Task","object_id":2816,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":96,"fiber_id":2584,"pid":96,"subject":"Async::Task","object_id":2592,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":159,"fiber_id":2952,"pid":159,"subject":"Async::Task","object_id":2960,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":90,"fiber_id":2856,"pid":90,"subject":"Async::Task","object_id":2864,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":177,"fiber_id":3288,"pid":177,"subject":"Async::Task","object_id":3296,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":180,"fiber_id":3240,"pid":180,"subject":"Async::Task","object_id":3248,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":114,"fiber_id":2872,"pid":114,"subject":"Async::Task","object_id":2880,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":30,"fiber_id":2264,"pid":30,"subject":"Async::Task","object_id":2272,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":75,"fiber_id":2824,"pid":75,"subject":"Async::Task","object_id":2832,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":153,"fiber_id":3080,"pid":153,"subject":"Async::Task","object_id":3088,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":12,"fiber_id":1960,"pid":12,"subject":"Async::Task","object_id":1968,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":90,"fiber_id":2872,"pid":90,"subject":"Async::Task","object_id":2880,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":141,"fiber_id":3016,"pid":141,"subject":"Async::Task","object_id":3024,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":63,"fiber_id":2248,"pid":63,"subject":"Async::Task","object_id":2256,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":168,"fiber_id":3128,"pid":168,"subject":"Async::Task","object_id":3136,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":120,"fiber_id":2776,"pid":120,"subject":"Async::Task","object_id":2784,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":9,"fiber_id":2184,"pid":9,"subject":"Async::Task","object_id":2192,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":75,"fiber_id":2840,"pid":75,"subject":"Async::Task","object_id":2848,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":117,"fiber_id":2488,"pid":117,"subject":"Async::Task","object_id":2496,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":150,"fiber_id":2840,"pid":150,"subject":"Async::Task","object_id":2848,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":126,"fiber_id":2936,"pid":126,"subject":"Async::Task","object_id":2944,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":90,"fiber_id":2888,"pid":90,"subject":"Async::Task","object_id":2896,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":63,"fiber_id":2264,"pid":63,"subject":"Async::Task","object_id":2272,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":9,"fiber_id":2200,"pid":9,"subject":"Async::Task","object_id":2208,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":69,"fiber_id":2264,"pid":69,"subject":"Async::Task","object_id":2272,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":135,"fiber_id":2776,"pid":135,"subject":"Async::Task","object_id":2784,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":183,"fiber_id":2888,"pid":183,"subject":"Async::Task","object_id":2896,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":72,"fiber_id":2584,"pid":72,"subject":"Async::Task","object_id":2592,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":168,"fiber_id":3144,"pid":168,"subject":"Async::Task","object_id":3152,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":90,"fiber_id":2904,"pid":90,"subject":"Async::Task","object_id":2912,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":39,"fiber_id":2552,"pid":39,"subject":"Async::Task","object_id":2560,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":132,"fiber_id":2872,"pid":132,"subject":"Async::Task","object_id":2880,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":54,"fiber_id":2616,"pid":54,"subject":"Async::Task","object_id":2624,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":75,"fiber_id":2856,"pid":75,"subject":"Async::Task","object_id":2864,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":63,"fiber_id":2280,"pid":63,"subject":"Async::Task","object_id":2288,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":33,"fiber_id":2216,"pid":33,"subject":"Async::Task","object_id":2224,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":102,"fiber_id":2696,"pid":102,"subject":"Async::Task","object_id":2704,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":75,"fiber_id":2872,"pid":75,"subject":"Async::Task","object_id":2880,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":192,"fiber_id":3320,"pid":192,"subject":"Async::Task","object_id":3328,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":42,"fiber_id":2264,"pid":42,"subject":"Async::Task","object_id":2272,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":120,"fiber_id":2792,"pid":120,"subject":"Async::Task","object_id":2800,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":36,"fiber_id":2280,"pid":36,"subject":"Async::Task","object_id":2288,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":63,"fiber_id":2296,"pid":63,"subject":"Async::Task","object_id":2304,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":123,"fiber_id":2776,"pid":123,"subject":"Async::Task","object_id":2784,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":177,"fiber_id":3304,"pid":177,"subject":"Async::Task","object_id":3312,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":33,"fiber_id":2232,"pid":33,"subject":"Async::Task","object_id":2240,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":75,"fiber_id":2888,"pid":75,"subject":"Async::Task","object_id":2896,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":90,"fiber_id":2920,"pid":90,"subject":"Async::Task","object_id":2928,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":78,"fiber_id":2872,"pid":78,"subject":"Async::Task","object_id":2880,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":15,"fiber_id":1992,"pid":15,"subject":"Async::Task","object_id":2000,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":12,"fiber_id":1976,"pid":12,"subject":"Async::Task","object_id":1984,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":75,"fiber_id":2904,"pid":75,"subject":"Async::Task","object_id":2912,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":132,"fiber_id":2888,"pid":132,"subject":"Async::Task","object_id":2896,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":165,"fiber_id":3192,"pid":165,"subject":"Async::Task","object_id":3200,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":159,"fiber_id":2968,"pid":159,"subject":"Async::Task","object_id":2976,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":81,"fiber_id":2616,"pid":81,"subject":"Async::Task","object_id":2624,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":30,"fiber_id":2280,"pid":30,"subject":"Async::Task","object_id":2288,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":153,"fiber_id":3096,"pid":153,"subject":"Async::Task","object_id":3104,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":99,"fiber_id":2504,"pid":99,"subject":"Async::Task","object_id":2512,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":105,"fiber_id":2536,"pid":105,"subject":"Async::Task","object_id":2544,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":129,"fiber_id":2712,"pid":129,"subject":"Async::Task","object_id":2720,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":102,"fiber_id":2712,"pid":102,"subject":"Async::Task","object_id":2720,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":174,"fiber_id":3528,"pid":174,"subject":"Async::Task","object_id":3536,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":129,"fiber_id":2728,"pid":129,"subject":"Async::Task","object_id":2736,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":198,"fiber_id":3336,"pid":198,"subject":"Async::Task","object_id":3344,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":117,"fiber_id":2504,"pid":117,"subject":"Async::Task","object_id":2512,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":120,"fiber_id":2808,"pid":120,"subject":"Async::Task","object_id":2816,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":150,"fiber_id":2856,"pid":150,"subject":"Async::Task","object_id":2864,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":195,"fiber_id":3400,"pid":195,"subject":"Async::Task","object_id":3408,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":12,"fiber_id":1992,"pid":12,"subject":"Async::Task","object_id":2000,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":48,"fiber_id":2376,"pid":48,"subject":"Async::Task","object_id":2384,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":108,"fiber_id":2632,"pid":108,"subject":"Async::Task","object_id":2640,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":93,"fiber_id":2808,"pid":93,"subject":"Async::Task","object_id":2816,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":21,"fiber_id":2248,"pid":21,"subject":"Async::Task","object_id":2256,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":144,"fiber_id":3304,"pid":144,"subject":"Async::Task","object_id":3312,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":102,"fiber_id":2728,"pid":102,"subject":"Async::Task","object_id":2736,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":156,"fiber_id":3048,"pid":156,"subject":"Async::Task","object_id":3056,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":84,"fiber_id":2472,"pid":84,"subject":"Async::Task","object_id":2480,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":15,"fiber_id":2008,"pid":15,"subject":"Async::Task","object_id":2016,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":96,"fiber_id":2600,"pid":96,"subject":"Async::Task","object_id":2608,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":75,"fiber_id":2920,"pid":75,"subject":"Async::Task","object_id":2928,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":87,"fiber_id":2328,"pid":87,"subject":"Async::Task","object_id":2336,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":36,"fiber_id":2296,"pid":36,"subject":"Async::Task","object_id":2304,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":126,"fiber_id":2952,"pid":126,"subject":"Async::Task","object_id":2960,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":9,"fiber_id":2216,"pid":9,"subject":"Async::Task","object_id":2224,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":147,"fiber_id":2616,"pid":147,"subject":"Async::Task","object_id":2624,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":60,"fiber_id":2648,"pid":60,"subject":"Async::Task","object_id":2656,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":117,"fiber_id":2520,"pid":117,"subject":"Async::Task","object_id":2528,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":198,"fiber_id":3352,"pid":198,"subject":"Async::Task","object_id":3360,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":105,"fiber_id":2552,"pid":105,"subject":"Async::Task","object_id":2560,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":63,"fiber_id":2312,"pid":63,"subject":"Async::Task","object_id":2320,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":102,"fiber_id":2744,"pid":102,"subject":"Async::Task","object_id":2752,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":141,"fiber_id":3032,"pid":141,"subject":"Async::Task","object_id":3040,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":132,"fiber_id":2904,"pid":132,"subject":"Async::Task","object_id":2912,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":129,"fiber_id":2744,"pid":129,"subject":"Async::Task","object_id":2752,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":120,"fiber_id":2824,"pid":120,"subject":"Async::Task","object_id":2832,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":66,"fiber_id":2536,"pid":66,"subject":"Async::Task","object_id":2544,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":129,"fiber_id":2760,"pid":129,"subject":"Async::Task","object_id":2768,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":186,"fiber_id":3288,"pid":186,"subject":"Async::Task","object_id":3296,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":198,"fiber_id":3368,"pid":198,"subject":"Async::Task","object_id":3376,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":54,"fiber_id":2632,"pid":54,"subject":"Async::Task","object_id":2640,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":36,"fiber_id":2312,"pid":36,"subject":"Async::Task","object_id":2320,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":159,"fiber_id":2984,"pid":159,"subject":"Async::Task","object_id":2992,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":165,"fiber_id":3208,"pid":165,"subject":"Async::Task","object_id":3216,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":111,"fiber_id":2696,"pid":111,"subject":"Async::Task","object_id":2704,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":138,"fiber_id":3000,"pid":138,"subject":"Async::Task","object_id":3008,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":168,"fiber_id":3160,"pid":168,"subject":"Async::Task","object_id":3168,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":195,"fiber_id":3416,"pid":195,"subject":"Async::Task","object_id":3424,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":51,"fiber_id":2456,"pid":51,"subject":"Async::Task","object_id":2464,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":42,"fiber_id":2280,"pid":42,"subject":"Async::Task","object_id":2288,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":33,"fiber_id":2248,"pid":33,"subject":"Async::Task","object_id":2256,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":105,"fiber_id":2568,"pid":105,"subject":"Async::Task","object_id":2576,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":171,"fiber_id":3352,"pid":171,"subject":"Async::Task","object_id":3360,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":132,"fiber_id":2920,"pid":132,"subject":"Async::Task","object_id":2928,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":180,"fiber_id":3256,"pid":180,"subject":"Async::Task","object_id":3264,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":135,"fiber_id":2792,"pid":135,"subject":"Async::Task","object_id":2800,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":90,"fiber_id":2936,"pid":90,"subject":"Async::Task","object_id":2944,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":99,"fiber_id":2520,"pid":99,"subject":"Async::Task","object_id":2528,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":63,"fiber_id":2328,"pid":63,"subject":"Async::Task","object_id":2336,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":111,"fiber_id":2712,"pid":111,"subject":"Async::Task","object_id":2720,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":69,"fiber_id":2280,"pid":69,"subject":"Async::Task","object_id":2288,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":30,"fiber_id":2296,"pid":30,"subject":"Async::Task","object_id":2304,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":114,"fiber_id":2888,"pid":114,"subject":"Async::Task","object_id":2896,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":195,"fiber_id":3432,"pid":195,"subject":"Async::Task","object_id":3440,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":36,"fiber_id":2328,"pid":36,"subject":"Async::Task","object_id":2336,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":96,"fiber_id":2616,"pid":96,"subject":"Async::Task","object_id":2624,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":48,"fiber_id":2392,"pid":48,"subject":"Async::Task","object_id":2400,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":45,"fiber_id":2360,"pid":45,"subject":"Async::Task","object_id":2368,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":183,"fiber_id":2904,"pid":183,"subject":"Async::Task","object_id":2912,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":84,"fiber_id":2488,"pid":84,"subject":"Async::Task","object_id":2496,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":129,"fiber_id":2776,"pid":129,"subject":"Async::Task","object_id":2784,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":96,"fiber_id":2632,"pid":96,"subject":"Async::Task","object_id":2640,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":93,"fiber_id":2824,"pid":93,"subject":"Async::Task","object_id":2832,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":177,"fiber_id":3320,"pid":177,"subject":"Async::Task","object_id":3328,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":15,"fiber_id":2024,"pid":15,"subject":"Async::Task","object_id":2032,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":48,"fiber_id":2408,"pid":48,"subject":"Async::Task","object_id":2416,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":66,"fiber_id":2552,"pid":66,"subject":"Async::Task","object_id":2560,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":27,"fiber_id":1656,"pid":27,"subject":"Async::Task","object_id":1664,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":132,"fiber_id":2936,"pid":132,"subject":"Async::Task","object_id":2944,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":195,"fiber_id":3448,"pid":195,"subject":"Async::Task","object_id":3456,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":144,"fiber_id":3320,"pid":144,"subject":"Async::Task","object_id":3328,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":36,"fiber_id":2344,"pid":36,"subject":"Async::Task","object_id":2352,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":90,"fiber_id":2952,"pid":90,"subject":"Async::Task","object_id":2960,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":9,"fiber_id":2232,"pid":9,"subject":"Async::Task","object_id":2240,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":126,"fiber_id":2968,"pid":126,"subject":"Async::Task","object_id":2976,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":165,"fiber_id":3224,"pid":165,"subject":"Async::Task","object_id":3232,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":75,"fiber_id":2936,"pid":75,"subject":"Async::Task","object_id":2944,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":93,"fiber_id":2840,"pid":93,"subject":"Async::Task","object_id":2848,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":102,"fiber_id":2760,"pid":102,"subject":"Async::Task","object_id":2768,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":66,"fiber_id":2568,"pid":66,"subject":"Async::Task","object_id":2576,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":27,"fiber_id":1672,"pid":27,"subject":"Async::Task","object_id":1680,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":147,"fiber_id":2632,"pid":147,"subject":"Async::Task","object_id":2640,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":36,"fiber_id":2360,"pid":36,"subject":"Async::Task","object_id":2368,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":129,"fiber_id":2792,"pid":129,"subject":"Async::Task","object_id":2800,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":27,"fiber_id":1688,"pid":27,"subject":"Async::Task","object_id":1696,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":72,"fiber_id":2600,"pid":72,"subject":"Async::Task","object_id":2608,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":120,"fiber_id":2840,"pid":120,"subject":"Async::Task","object_id":2848,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":147,"fiber_id":2648,"pid":147,"subject":"Async::Task","object_id":2656,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":114,"fiber_id":2904,"pid":114,"subject":"Async::Task","object_id":2912,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":84,"fiber_id":2504,"pid":84,"subject":"Async::Task","object_id":2512,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":183,"fiber_id":2920,"pid":183,"subject":"Async::Task","object_id":2928,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":195,"fiber_id":3464,"pid":195,"subject":"Async::Task","object_id":3472,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":48,"fiber_id":2424,"pid":48,"subject":"Async::Task","object_id":2432,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":186,"fiber_id":3304,"pid":186,"subject":"Async::Task","object_id":3312,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":144,"fiber_id":3336,"pid":144,"subject":"Async::Task","object_id":3344,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":111,"fiber_id":2728,"pid":111,"subject":"Async::Task","object_id":2736,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":9,"fiber_id":2248,"pid":9,"subject":"Async::Task","object_id":2256,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":195,"fiber_id":3480,"pid":195,"subject":"Async::Task","object_id":3488,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":165,"fiber_id":3240,"pid":165,"subject":"Async::Task","object_id":3248,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":135,"fiber_id":2808,"pid":135,"subject":"Async::Task","object_id":2816,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":66,"fiber_id":2584,"pid":66,"subject":"Async::Task","object_id":2592,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":15,"fiber_id":2040,"pid":15,"subject":"Async::Task","object_id":2048,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":24,"fiber_id":2072,"pid":24,"subject":"Async::Task","object_id":2080,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":117,"fiber_id":2536,"pid":117,"subject":"Async::Task","object_id":2544,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":159,"fiber_id":3000,"pid":159,"subject":"Async::Task","object_id":3008,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":153,"fiber_id":3112,"pid":153,"subject":"Async::Task","object_id":3120,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":198,"fiber_id":3384,"pid":198,"subject":"Async::Task","object_id":3392,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":30,"fiber_id":2312,"pid":30,"subject":"Async::Task","object_id":2320,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":42,"fiber_id":2296,"pid":42,"subject":"Async::Task","object_id":2304,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":36,"fiber_id":2376,"pid":36,"subject":"Async::Task","object_id":2384,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":195,"fiber_id":3496,"pid":195,"subject":"Async::Task","object_id":3504,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":141,"fiber_id":3048,"pid":141,"subject":"Async::Task","object_id":3056,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":198,"fiber_id":3400,"pid":198,"subject":"Async::Task","object_id":3408,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":120,"fiber_id":2856,"pid":120,"subject":"Async::Task","object_id":2864,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":159,"fiber_id":3016,"pid":159,"subject":"Async::Task","object_id":3024,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":111,"fiber_id":2744,"pid":111,"subject":"Async::Task","object_id":2752,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":147,"fiber_id":2664,"pid":147,"subject":"Async::Task","object_id":2672,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":30,"fiber_id":2328,"pid":30,"subject":"Async::Task","object_id":2336,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":174,"fiber_id":3544,"pid":174,"subject":"Async::Task","object_id":3552,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":141,"fiber_id":3064,"pid":141,"subject":"Async::Task","object_id":3072,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":156,"fiber_id":3064,"pid":156,"subject":"Async::Task","object_id":3072,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":57,"fiber_id":2120,"pid":57,"subject":"Async::Task","object_id":2128,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":48,"fiber_id":2440,"pid":48,"subject":"Async::Task","object_id":2448,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":111,"fiber_id":2760,"pid":111,"subject":"Async::Task","object_id":2768,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":123,"fiber_id":2792,"pid":123,"subject":"Async::Task","object_id":2800,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":156,"fiber_id":3080,"pid":156,"subject":"Async::Task","object_id":3088,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":90,"fiber_id":2968,"pid":90,"subject":"Async::Task","object_id":2976,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":117,"fiber_id":2552,"pid":117,"subject":"Async::Task","object_id":2560,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":162,"fiber_id":3128,"pid":162,"subject":"Async::Task","object_id":3136,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":69,"fiber_id":2296,"pid":69,"subject":"Async::Task","object_id":2304,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":93,"fiber_id":2856,"pid":93,"subject":"Async::Task","object_id":2864,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":147,"fiber_id":2680,"pid":147,"subject":"Async::Task","object_id":2688,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":72,"fiber_id":2616,"pid":72,"subject":"Async::Task","object_id":2624,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":78,"fiber_id":2888,"pid":78,"subject":"Async::Task","object_id":2896,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":144,"fiber_id":3352,"pid":144,"subject":"Async::Task","object_id":3360,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":42,"fiber_id":2312,"pid":42,"subject":"Async::Task","object_id":2320,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":75,"fiber_id":2952,"pid":75,"subject":"Async::Task","object_id":2960,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":129,"fiber_id":2808,"pid":129,"subject":"Async::Task","object_id":2816,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":93,"fiber_id":2872,"pid":93,"subject":"Async::Task","object_id":2880,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":45,"fiber_id":2376,"pid":45,"subject":"Async::Task","object_id":2384,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":42,"fiber_id":2328,"pid":42,"subject":"Async::Task","object_id":2336,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":126,"fiber_id":2984,"pid":126,"subject":"Async::Task","object_id":2992,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":156,"fiber_id":3096,"pid":156,"subject":"Async::Task","object_id":3104,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":141,"fiber_id":3080,"pid":141,"subject":"Async::Task","object_id":3088,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":132,"fiber_id":2952,"pid":132,"subject":"Async::Task","object_id":2960,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":69,"fiber_id":2312,"pid":69,"subject":"Async::Task","object_id":2320,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":141,"fiber_id":3096,"pid":141,"subject":"Async::Task","object_id":3104,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":39,"fiber_id":2568,"pid":39,"subject":"Async::Task","object_id":2576,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":150,"fiber_id":2872,"pid":150,"subject":"Async::Task","object_id":2880,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":108,"fiber_id":2648,"pid":108,"subject":"Async::Task","object_id":2656,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":54,"fiber_id":2648,"pid":54,"subject":"Async::Task","object_id":2656,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":165,"fiber_id":3256,"pid":165,"subject":"Async::Task","object_id":3264,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":114,"fiber_id":2920,"pid":114,"subject":"Async::Task","object_id":2928,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":135,"fiber_id":2824,"pid":135,"subject":"Async::Task","object_id":2832,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":186,"fiber_id":3320,"pid":186,"subject":"Async::Task","object_id":3328,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":117,"fiber_id":2568,"pid":117,"subject":"Async::Task","object_id":2576,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":33,"fiber_id":2264,"pid":33,"subject":"Async::Task","object_id":2272,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":195,"fiber_id":3512,"pid":195,"subject":"Async::Task","object_id":3520,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":174,"fiber_id":3560,"pid":174,"subject":"Async::Task","object_id":3568,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":45,"fiber_id":2392,"pid":45,"subject":"Async::Task","object_id":2400,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":126,"fiber_id":3000,"pid":126,"subject":"Async::Task","object_id":3008,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":153,"fiber_id":3128,"pid":153,"subject":"Async::Task","object_id":3136,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":111,"fiber_id":2776,"pid":111,"subject":"Async::Task","object_id":2784,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":63,"fiber_id":2344,"pid":63,"subject":"Async::Task","object_id":2352,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":123,"fiber_id":2808,"pid":123,"subject":"Async::Task","object_id":2816,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":114,"fiber_id":2936,"pid":114,"subject":"Async::Task","object_id":2944,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":141,"fiber_id":3112,"pid":141,"subject":"Async::Task","object_id":3120,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":171,"fiber_id":3368,"pid":171,"subject":"Async::Task","object_id":3376,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":48,"fiber_id":2456,"pid":48,"subject":"Async::Task","object_id":2464,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":120,"fiber_id":2872,"pid":120,"subject":"Async::Task","object_id":2880,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":159,"fiber_id":3032,"pid":159,"subject":"Async::Task","object_id":3040,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":60,"fiber_id":2664,"pid":60,"subject":"Async::Task","object_id":2672,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":168,"fiber_id":3176,"pid":168,"subject":"Async::Task","object_id":3184,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":150,"fiber_id":2888,"pid":150,"subject":"Async::Task","object_id":2896,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":66,"fiber_id":2600,"pid":66,"subject":"Async::Task","object_id":2608,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":33,"fiber_id":2280,"pid":33,"subject":"Async::Task","object_id":2288,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":69,"fiber_id":2328,"pid":69,"subject":"Async::Task","object_id":2336,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":24,"fiber_id":2088,"pid":24,"subject":"Async::Task","object_id":2096,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":150,"fiber_id":2904,"pid":150,"subject":"Async::Task","object_id":2912,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":66,"fiber_id":2616,"pid":66,"subject":"Async::Task","object_id":2624,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":135,"fiber_id":2840,"pid":135,"subject":"Async::Task","object_id":2848,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":99,"fiber_id":2536,"pid":99,"subject":"Async::Task","object_id":2544,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":168,"fiber_id":3192,"pid":168,"subject":"Async::Task","object_id":3200,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":156,"fiber_id":3112,"pid":156,"subject":"Async::Task","object_id":3120,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":75,"fiber_id":2968,"pid":75,"subject":"Async::Task","object_id":2976,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":120,"fiber_id":2888,"pid":120,"subject":"Async::Task","object_id":2896,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":54,"fiber_id":2664,"pid":54,"subject":"Async::Task","object_id":2672,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":195,"fiber_id":3528,"pid":195,"subject":"Async::Task","object_id":3536,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":114,"fiber_id":2952,"pid":114,"subject":"Async::Task","object_id":2960,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":45,"fiber_id":2408,"pid":45,"subject":"Async::Task","object_id":2416,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":183,"fiber_id":2936,"pid":183,"subject":"Async::Task","object_id":2944,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":192,"fiber_id":3336,"pid":192,"subject":"Async::Task","object_id":3344,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":51,"fiber_id":2472,"pid":51,"subject":"Async::Task","object_id":2480,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":147,"fiber_id":2696,"pid":147,"subject":"Async::Task","object_id":2704,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":99,"fiber_id":2552,"pid":99,"subject":"Async::Task","object_id":2560,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":78,"fiber_id":2904,"pid":78,"subject":"Async::Task","object_id":2912,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":90,"fiber_id":2984,"pid":90,"subject":"Async::Task","object_id":2992,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":180,"fiber_id":3272,"pid":180,"subject":"Async::Task","object_id":3280,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":36,"fiber_id":2392,"pid":36,"subject":"Async::Task","object_id":2400,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":183,"fiber_id":2952,"pid":183,"subject":"Async::Task","object_id":2960,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":171,"fiber_id":3384,"pid":171,"subject":"Async::Task","object_id":3392,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":126,"fiber_id":3016,"pid":126,"subject":"Async::Task","object_id":3024,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":168,"fiber_id":3208,"pid":168,"subject":"Async::Task","object_id":3216,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":138,"fiber_id":3016,"pid":138,"subject":"Async::Task","object_id":3024,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":90,"fiber_id":3000,"pid":90,"subject":"Async::Task","object_id":3008,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":192,"fiber_id":3352,"pid":192,"subject":"Async::Task","object_id":3360,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":117,"fiber_id":2584,"pid":117,"subject":"Async::Task","object_id":2592,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":105,"fiber_id":2584,"pid":105,"subject":"Async::Task","object_id":2592,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":153,"fiber_id":3144,"pid":153,"subject":"Async::Task","object_id":3152,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":36,"fiber_id":2408,"pid":36,"subject":"Async::Task","object_id":2416,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":180,"fiber_id":3288,"pid":180,"subject":"Async::Task","object_id":3296,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":141,"fiber_id":3128,"pid":141,"subject":"Async::Task","object_id":3136,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":129,"fiber_id":2824,"pid":129,"subject":"Async::Task","object_id":2832,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":27,"fiber_id":1704,"pid":27,"subject":"Async::Task","object_id":1712,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":69,"fiber_id":2344,"pid":69,"subject":"Async::Task","object_id":2352,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":132,"fiber_id":2968,"pid":132,"subject":"Async::Task","object_id":2976,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":60,"fiber_id":2680,"pid":60,"subject":"Async::Task","object_id":2688,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":72,"fiber_id":2632,"pid":72,"subject":"Async::Task","object_id":2640,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":33,"fiber_id":2296,"pid":33,"subject":"Async::Task","object_id":2304,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":153,"fiber_id":3160,"pid":153,"subject":"Async::Task","object_id":3168,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":150,"fiber_id":2920,"pid":150,"subject":"Async::Task","object_id":2928,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":195,"fiber_id":3544,"pid":195,"subject":"Async::Task","object_id":3552,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":177,"fiber_id":3336,"pid":177,"subject":"Async::Task","object_id":3344,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":57,"fiber_id":2136,"pid":57,"subject":"Async::Task","object_id":2144,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":195,"fiber_id":3560,"pid":195,"subject":"Async::Task","object_id":3568,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":144,"fiber_id":3368,"pid":144,"subject":"Async::Task","object_id":3376,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":72,"fiber_id":2648,"pid":72,"subject":"Async::Task","object_id":2656,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":78,"fiber_id":2920,"pid":78,"subject":"Async::Task","object_id":2928,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":192,"fiber_id":3368,"pid":192,"subject":"Async::Task","object_id":3376,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":54,"fiber_id":2680,"pid":54,"subject":"Async::Task","object_id":2688,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":39,"fiber_id":2584,"pid":39,"subject":"Async::Task","object_id":2592,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":57,"fiber_id":2152,"pid":57,"subject":"Async::Task","object_id":2160,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":24,"fiber_id":2104,"pid":24,"subject":"Async::Task","object_id":2112,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":114,"fiber_id":2968,"pid":114,"subject":"Async::Task","object_id":2976,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":159,"fiber_id":3048,"pid":159,"subject":"Async::Task","object_id":3056,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":51,"fiber_id":2488,"pid":51,"subject":"Async::Task","object_id":2496,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":27,"fiber_id":1720,"pid":27,"subject":"Async::Task","object_id":1728,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":153,"fiber_id":3176,"pid":153,"subject":"Async::Task","object_id":3184,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":45,"fiber_id":2424,"pid":45,"subject":"Async::Task","object_id":2432,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":33,"fiber_id":2312,"pid":33,"subject":"Async::Task","object_id":2320,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":192,"fiber_id":3384,"pid":192,"subject":"Async::Task","object_id":3392,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":102,"fiber_id":2776,"pid":102,"subject":"Async::Task","object_id":2784,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":141,"fiber_id":3144,"pid":141,"subject":"Async::Task","object_id":3152,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":87,"fiber_id":2344,"pid":87,"subject":"Async::Task","object_id":2352,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":36,"fiber_id":2424,"pid":36,"subject":"Async::Task","object_id":2432,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":81,"fiber_id":2632,"pid":81,"subject":"Async::Task","object_id":2640,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":111,"fiber_id":2792,"pid":111,"subject":"Async::Task","object_id":2800,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":177,"fiber_id":3352,"pid":177,"subject":"Async::Task","object_id":3360,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":144,"fiber_id":3384,"pid":144,"subject":"Async::Task","object_id":3392,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":189,"fiber_id":3800,"pid":189,"subject":"Async::Task","object_id":3808,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":141,"fiber_id":3160,"pid":141,"subject":"Async::Task","object_id":3168,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":150,"fiber_id":2936,"pid":150,"subject":"Async::Task","object_id":2944,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":36,"fiber_id":2440,"pid":36,"subject":"Async::Task","object_id":2448,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":159,"fiber_id":3064,"pid":159,"subject":"Async::Task","object_id":3072,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":45,"fiber_id":2440,"pid":45,"subject":"Async::Task","object_id":2448,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":63,"fiber_id":2360,"pid":63,"subject":"Async::Task","object_id":2368,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":33,"fiber_id":2328,"pid":33,"subject":"Async::Task","object_id":2336,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":165,"fiber_id":3272,"pid":165,"subject":"Async::Task","object_id":3280,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":90,"fiber_id":3016,"pid":90,"subject":"Async::Task","object_id":3024,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":168,"fiber_id":3224,"pid":168,"subject":"Async::Task","object_id":3232,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":9,"fiber_id":2264,"pid":9,"subject":"Async::Task","object_id":2272,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":66,"fiber_id":2632,"pid":66,"subject":"Async::Task","object_id":2640,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":198,"fiber_id":3416,"pid":198,"subject":"Async::Task","object_id":3424,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":54,"fiber_id":2696,"pid":54,"subject":"Async::Task","object_id":2704,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":135,"fiber_id":2856,"pid":135,"subject":"Async::Task","object_id":2864,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":66,"fiber_id":2648,"pid":66,"subject":"Async::Task","object_id":2656,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":183,"fiber_id":2968,"pid":183,"subject":"Async::Task","object_id":2976,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":132,"fiber_id":2984,"pid":132,"subject":"Async::Task","object_id":2992,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":126,"fiber_id":3032,"pid":126,"subject":"Async::Task","object_id":3040,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":51,"fiber_id":2504,"pid":51,"subject":"Async::Task","object_id":2512,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":102,"fiber_id":2792,"pid":102,"subject":"Async::Task","object_id":2800,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":63,"fiber_id":2376,"pid":63,"subject":"Async::Task","object_id":2384,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":18,"fiber_id":2120,"pid":18,"subject":"Async::Task","object_id":2128,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":54,"fiber_id":2712,"pid":54,"subject":"Async::Task","object_id":2720,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":105,"fiber_id":2600,"pid":105,"subject":"Async::Task","object_id":2608,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":156,"fiber_id":3128,"pid":156,"subject":"Async::Task","object_id":3136,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":99,"fiber_id":2568,"pid":99,"subject":"Async::Task","object_id":2576,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":183,"fiber_id":2984,"pid":183,"subject":"Async::Task","object_id":2992,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":21,"fiber_id":2264,"pid":21,"subject":"Async::Task","object_id":2272,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":9,"fiber_id":2280,"pid":9,"subject":"Async::Task","object_id":2288,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":111,"fiber_id":2808,"pid":111,"subject":"Async::Task","object_id":2816,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":21,"fiber_id":2280,"pid":21,"subject":"Async::Task","object_id":2288,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":81,"fiber_id":2648,"pid":81,"subject":"Async::Task","object_id":2656,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":51,"fiber_id":2520,"pid":51,"subject":"Async::Task","object_id":2528,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":60,"fiber_id":2696,"pid":60,"subject":"Async::Task","object_id":2704,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":180,"fiber_id":3304,"pid":180,"subject":"Async::Task","object_id":3312,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":153,"fiber_id":3192,"pid":153,"subject":"Async::Task","object_id":3200,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":165,"fiber_id":3288,"pid":165,"subject":"Async::Task","object_id":3296,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":81,"fiber_id":2664,"pid":81,"subject":"Async::Task","object_id":2672,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":15,"fiber_id":2056,"pid":15,"subject":"Async::Task","object_id":2064,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":141,"fiber_id":3176,"pid":141,"subject":"Async::Task","object_id":3184,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":48,"fiber_id":2472,"pid":48,"subject":"Async::Task","object_id":2480,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":162,"fiber_id":3144,"pid":162,"subject":"Async::Task","object_id":3152,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":87,"fiber_id":2360,"pid":87,"subject":"Async::Task","object_id":2368,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":117,"fiber_id":2600,"pid":117,"subject":"Async::Task","object_id":2608,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":165,"fiber_id":3304,"pid":165,"subject":"Async::Task","object_id":3312,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":186,"fiber_id":3336,"pid":186,"subject":"Async::Task","object_id":3344,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":180,"fiber_id":3320,"pid":180,"subject":"Async::Task","object_id":3328,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":12,"fiber_id":2008,"pid":12,"subject":"Async::Task","object_id":2016,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":93,"fiber_id":2888,"pid":93,"subject":"Async::Task","object_id":2896,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":39,"fiber_id":2600,"pid":39,"subject":"Async::Task","object_id":2608,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":33,"fiber_id":2344,"pid":33,"subject":"Async::Task","object_id":2352,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":105,"fiber_id":2616,"pid":105,"subject":"Async::Task","object_id":2624,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":51,"fiber_id":2536,"pid":51,"subject":"Async::Task","object_id":2544,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":96,"fiber_id":2648,"pid":96,"subject":"Async::Task","object_id":2656,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":189,"fiber_id":3816,"pid":189,"subject":"Async::Task","object_id":3824,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":138,"fiber_id":3032,"pid":138,"subject":"Async::Task","object_id":3040,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":72,"fiber_id":2664,"pid":72,"subject":"Async::Task","object_id":2672,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":27,"fiber_id":1736,"pid":27,"subject":"Async::Task","object_id":1744,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":42,"fiber_id":2344,"pid":42,"subject":"Async::Task","object_id":2352,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":153,"fiber_id":3208,"pid":153,"subject":"Async::Task","object_id":3216,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":90,"fiber_id":3032,"pid":90,"subject":"Async::Task","object_id":3040,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":117,"fiber_id":2616,"pid":117,"subject":"Async::Task","object_id":2624,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":126,"fiber_id":3048,"pid":126,"subject":"Async::Task","object_id":3056,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":54,"fiber_id":2728,"pid":54,"subject":"Async::Task","object_id":2736,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":189,"fiber_id":3832,"pid":189,"subject":"Async::Task","object_id":3840,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":15,"fiber_id":2072,"pid":15,"subject":"Async::Task","object_id":2080,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":129,"fiber_id":2840,"pid":129,"subject":"Async::Task","object_id":2848,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":126,"fiber_id":3064,"pid":126,"subject":"Async::Task","object_id":3072,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":57,"fiber_id":2168,"pid":57,"subject":"Async::Task","object_id":2176,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":108,"fiber_id":2664,"pid":108,"subject":"Async::Task","object_id":2672,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":195,"fiber_id":3576,"pid":195,"subject":"Async::Task","object_id":3584,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":192,"fiber_id":3400,"pid":192,"subject":"Async::Task","object_id":3408,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":51,"fiber_id":2552,"pid":51,"subject":"Async::Task","object_id":2560,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":36,"fiber_id":2456,"pid":36,"subject":"Async::Task","object_id":2464,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":18,"fiber_id":2136,"pid":18,"subject":"Async::Task","object_id":2144,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":114,"fiber_id":2984,"pid":114,"subject":"Async::Task","object_id":2992,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":183,"fiber_id":3000,"pid":183,"subject":"Async::Task","object_id":3008,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":78,"fiber_id":2936,"pid":78,"subject":"Async::Task","object_id":2944,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":66,"fiber_id":2664,"pid":66,"subject":"Async::Task","object_id":2672,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":33,"fiber_id":2360,"pid":33,"subject":"Async::Task","object_id":2368,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":54,"fiber_id":2744,"pid":54,"subject":"Async::Task","object_id":2752,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":138,"fiber_id":3048,"pid":138,"subject":"Async::Task","object_id":3056,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":72,"fiber_id":2680,"pid":72,"subject":"Async::Task","object_id":2688,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":186,"fiber_id":3352,"pid":186,"subject":"Async::Task","object_id":3360,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":198,"fiber_id":3432,"pid":198,"subject":"Async::Task","object_id":3440,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":39,"fiber_id":2616,"pid":39,"subject":"Async::Task","object_id":2624,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":96,"fiber_id":2664,"pid":96,"subject":"Async::Task","object_id":2672,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":105,"fiber_id":2632,"pid":105,"subject":"Async::Task","object_id":2640,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":114,"fiber_id":3000,"pid":114,"subject":"Async::Task","object_id":3008,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":45,"fiber_id":2456,"pid":45,"subject":"Async::Task","object_id":2464,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":15,"fiber_id":2088,"pid":15,"subject":"Async::Task","object_id":2096,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":150,"fiber_id":2952,"pid":150,"subject":"Async::Task","object_id":2960,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":192,"fiber_id":3416,"pid":192,"subject":"Async::Task","object_id":3424,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":171,"fiber_id":3400,"pid":171,"subject":"Async::Task","object_id":3408,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":57,"fiber_id":2184,"pid":57,"subject":"Async::Task","object_id":2192,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":54,"fiber_id":2760,"pid":54,"subject":"Async::Task","object_id":2768,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":183,"fiber_id":3016,"pid":183,"subject":"Async::Task","object_id":3024,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":30,"fiber_id":2344,"pid":30,"subject":"Async::Task","object_id":2352,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":108,"fiber_id":2680,"pid":108,"subject":"Async::Task","object_id":2688,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":162,"fiber_id":3160,"pid":162,"subject":"Async::Task","object_id":3168,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":63,"fiber_id":2392,"pid":63,"subject":"Async::Task","object_id":2400,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":168,"fiber_id":3240,"pid":168,"subject":"Async::Task","object_id":3248,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":39,"fiber_id":2632,"pid":39,"subject":"Async::Task","object_id":2640,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":84,"fiber_id":2520,"pid":84,"subject":"Async::Task","object_id":2528,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":144,"fiber_id":3400,"pid":144,"subject":"Async::Task","object_id":3408,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":30,"fiber_id":2360,"pid":30,"subject":"Async::Task","object_id":2368,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":66,"fiber_id":2680,"pid":66,"subject":"Async::Task","object_id":2688,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":87,"fiber_id":2376,"pid":87,"subject":"Async::Task","object_id":2384,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":72,"fiber_id":2696,"pid":72,"subject":"Async::Task","object_id":2704,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":69,"fiber_id":2360,"pid":69,"subject":"Async::Task","object_id":2368,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":129,"fiber_id":2856,"pid":129,"subject":"Async::Task","object_id":2864,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":45,"fiber_id":2472,"pid":45,"subject":"Async::Task","object_id":2480,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":105,"fiber_id":2648,"pid":105,"subject":"Async::Task","object_id":2656,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":78,"fiber_id":2952,"pid":78,"subject":"Async::Task","object_id":2960,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":159,"fiber_id":3080,"pid":159,"subject":"Async::Task","object_id":3088,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":30,"fiber_id":2376,"pid":30,"subject":"Async::Task","object_id":2384,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":21,"fiber_id":2296,"pid":21,"subject":"Async::Task","object_id":2304,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":168,"fiber_id":3256,"pid":168,"subject":"Async::Task","object_id":3264,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":198,"fiber_id":3448,"pid":198,"subject":"Async::Task","object_id":3456,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":111,"fiber_id":2824,"pid":111,"subject":"Async::Task","object_id":2832,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":30,"fiber_id":2392,"pid":30,"subject":"Async::Task","object_id":2400,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":90,"fiber_id":3048,"pid":90,"subject":"Async::Task","object_id":3056,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":51,"fiber_id":2568,"pid":51,"subject":"Async::Task","object_id":2576,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":156,"fiber_id":3144,"pid":156,"subject":"Async::Task","object_id":3152,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":111,"fiber_id":2840,"pid":111,"subject":"Async::Task","object_id":2848,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":78,"fiber_id":2968,"pid":78,"subject":"Async::Task","object_id":2976,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":171,"fiber_id":3416,"pid":171,"subject":"Async::Task","object_id":3424,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":177,"fiber_id":3368,"pid":177,"subject":"Async::Task","object_id":3376,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":189,"fiber_id":3848,"pid":189,"subject":"Async::Task","object_id":3856,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":27,"fiber_id":1752,"pid":27,"subject":"Async::Task","object_id":1760,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":186,"fiber_id":3368,"pid":186,"subject":"Async::Task","object_id":3376,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":90,"fiber_id":3064,"pid":90,"subject":"Async::Task","object_id":3072,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":159,"fiber_id":3096,"pid":159,"subject":"Async::Task","object_id":3104,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":63,"fiber_id":2408,"pid":63,"subject":"Async::Task","object_id":2416,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":57,"fiber_id":2200,"pid":57,"subject":"Async::Task","object_id":2208,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":18,"fiber_id":2152,"pid":18,"subject":"Async::Task","object_id":2160,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":180,"fiber_id":3336,"pid":180,"subject":"Async::Task","object_id":3344,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":69,"fiber_id":2376,"pid":69,"subject":"Async::Task","object_id":2384,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":84,"fiber_id":2536,"pid":84,"subject":"Async::Task","object_id":2544,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":39,"fiber_id":2648,"pid":39,"subject":"Async::Task","object_id":2656,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":27,"fiber_id":1768,"pid":27,"subject":"Async::Task","object_id":1776,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":186,"fiber_id":3384,"pid":186,"subject":"Async::Task","object_id":3392,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":156,"fiber_id":3160,"pid":156,"subject":"Async::Task","object_id":3168,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":33,"fiber_id":2376,"pid":33,"subject":"Async::Task","object_id":2384,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":123,"fiber_id":2824,"pid":123,"subject":"Async::Task","object_id":2832,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":30,"fiber_id":2408,"pid":30,"subject":"Async::Task","object_id":2416,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":90,"fiber_id":3080,"pid":90,"subject":"Async::Task","object_id":3088,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":189,"fiber_id":3864,"pid":189,"subject":"Async::Task","object_id":3872,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":57,"fiber_id":2216,"pid":57,"subject":"Async::Task","object_id":2224,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":72,"fiber_id":2712,"pid":72,"subject":"Async::Task","object_id":2720,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":42,"fiber_id":2360,"pid":42,"subject":"Async::Task","object_id":2368,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":150,"fiber_id":2968,"pid":150,"subject":"Async::Task","object_id":2976,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":144,"fiber_id":3416,"pid":144,"subject":"Async::Task","object_id":3424,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":198,"fiber_id":3464,"pid":198,"subject":"Async::Task","object_id":3472,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":177,"fiber_id":3384,"pid":177,"subject":"Async::Task","object_id":3392,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":171,"fiber_id":3432,"pid":171,"subject":"Async::Task","object_id":3440,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":165,"fiber_id":3320,"pid":165,"subject":"Async::Task","object_id":3328,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":51,"fiber_id":2584,"pid":51,"subject":"Async::Task","object_id":2592,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":87,"fiber_id":2392,"pid":87,"subject":"Async::Task","object_id":2400,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":36,"fiber_id":2472,"pid":36,"subject":"Async::Task","object_id":2480,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":174,"fiber_id":3576,"pid":174,"subject":"Async::Task","object_id":3584,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":117,"fiber_id":2632,"pid":117,"subject":"Async::Task","object_id":2640,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":168,"fiber_id":3272,"pid":168,"subject":"Async::Task","object_id":3280,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":138,"fiber_id":3064,"pid":138,"subject":"Async::Task","object_id":3072,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":66,"fiber_id":2696,"pid":66,"subject":"Async::Task","object_id":2704,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":156,"fiber_id":3176,"pid":156,"subject":"Async::Task","object_id":3184,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":57,"fiber_id":2232,"pid":57,"subject":"Async::Task","object_id":2240,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":84,"fiber_id":2552,"pid":84,"subject":"Async::Task","object_id":2560,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":81,"fiber_id":2680,"pid":81,"subject":"Async::Task","object_id":2688,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":144,"fiber_id":3432,"pid":144,"subject":"Async::Task","object_id":3440,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":18,"fiber_id":2168,"pid":18,"subject":"Async::Task","object_id":2176,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":135,"fiber_id":2872,"pid":135,"subject":"Async::Task","object_id":2880,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":165,"fiber_id":3336,"pid":165,"subject":"Async::Task","object_id":3344,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":186,"fiber_id":3400,"pid":186,"subject":"Async::Task","object_id":3408,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":108,"fiber_id":2696,"pid":108,"subject":"Async::Task","object_id":2704,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":168,"fiber_id":3288,"pid":168,"subject":"Async::Task","object_id":3296,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":72,"fiber_id":2728,"pid":72,"subject":"Async::Task","object_id":2736,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":186,"fiber_id":3416,"pid":186,"subject":"Async::Task","object_id":3424,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":120,"fiber_id":2904,"pid":120,"subject":"Async::Task","object_id":2912,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":15,"fiber_id":2104,"pid":15,"subject":"Async::Task","object_id":2112,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":99,"fiber_id":2584,"pid":99,"subject":"Async::Task","object_id":2592,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":36,"fiber_id":2488,"pid":36,"subject":"Async::Task","object_id":2496,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":39,"fiber_id":2664,"pid":39,"subject":"Async::Task","object_id":2672,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":192,"fiber_id":3432,"pid":192,"subject":"Async::Task","object_id":3440,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":36,"fiber_id":2504,"pid":36,"subject":"Async::Task","object_id":2512,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":69,"fiber_id":2392,"pid":69,"subject":"Async::Task","object_id":2400,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":120,"fiber_id":2920,"pid":120,"subject":"Async::Task","object_id":2928,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":48,"fiber_id":2488,"pid":48,"subject":"Async::Task","object_id":2496,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":159,"fiber_id":3112,"pid":159,"subject":"Async::Task","object_id":3120,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":54,"fiber_id":2776,"pid":54,"subject":"Async::Task","object_id":2784,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":30,"fiber_id":2424,"pid":30,"subject":"Async::Task","object_id":2432,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":177,"fiber_id":3400,"pid":177,"subject":"Async::Task","object_id":3408,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":186,"fiber_id":3432,"pid":186,"subject":"Async::Task","object_id":3440,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":72,"fiber_id":2744,"pid":72,"subject":"Async::Task","object_id":2752,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":21,"fiber_id":2312,"pid":21,"subject":"Async::Task","object_id":2320,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":114,"fiber_id":3016,"pid":114,"subject":"Async::Task","object_id":3024,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":54,"fiber_id":2792,"pid":54,"subject":"Async::Task","object_id":2800,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":45,"fiber_id":2488,"pid":45,"subject":"Async::Task","object_id":2496,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":57,"fiber_id":2248,"pid":57,"subject":"Async::Task","object_id":2256,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":102,"fiber_id":2808,"pid":102,"subject":"Async::Task","object_id":2816,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":54,"fiber_id":2808,"pid":54,"subject":"Async::Task","object_id":2816,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":27,"fiber_id":1784,"pid":27,"subject":"Async::Task","object_id":1792,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":75,"fiber_id":2984,"pid":75,"subject":"Async::Task","object_id":2992,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":36,"fiber_id":2520,"pid":36,"subject":"Async::Task","object_id":2528,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":9,"fiber_id":2296,"pid":9,"subject":"Async::Task","object_id":2304,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":114,"fiber_id":3032,"pid":114,"subject":"Async::Task","object_id":3040,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":183,"fiber_id":3032,"pid":183,"subject":"Async::Task","object_id":3040,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":9,"fiber_id":2312,"pid":9,"subject":"Async::Task","object_id":2320,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":111,"fiber_id":2856,"pid":111,"subject":"Async::Task","object_id":2864,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":15,"fiber_id":2120,"pid":15,"subject":"Async::Task","object_id":2128,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":108,"fiber_id":2712,"pid":108,"subject":"Async::Task","object_id":2720,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":102,"fiber_id":2824,"pid":102,"subject":"Async::Task","object_id":2832,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":105,"fiber_id":2664,"pid":105,"subject":"Async::Task","object_id":2672,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":144,"fiber_id":3448,"pid":144,"subject":"Async::Task","object_id":3456,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":78,"fiber_id":2984,"pid":78,"subject":"Async::Task","object_id":2992,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":39,"fiber_id":2680,"pid":39,"subject":"Async::Task","object_id":2688,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":126,"fiber_id":3080,"pid":126,"subject":"Async::Task","object_id":3088,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":159,"fiber_id":3128,"pid":159,"subject":"Async::Task","object_id":3136,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":51,"fiber_id":2600,"pid":51,"subject":"Async::Task","object_id":2608,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":9,"fiber_id":2328,"pid":9,"subject":"Async::Task","object_id":2336,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":186,"fiber_id":3448,"pid":186,"subject":"Async::Task","object_id":3456,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":120,"fiber_id":2936,"pid":120,"subject":"Async::Task","object_id":2944,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":132,"fiber_id":3000,"pid":132,"subject":"Async::Task","object_id":3008,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":162,"fiber_id":3176,"pid":162,"subject":"Async::Task","object_id":3184,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":90,"fiber_id":3096,"pid":90,"subject":"Async::Task","object_id":3104,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":78,"fiber_id":3000,"pid":78,"subject":"Async::Task","object_id":3008,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":48,"fiber_id":2504,"pid":48,"subject":"Async::Task","object_id":2512,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":72,"fiber_id":2760,"pid":72,"subject":"Async::Task","object_id":2768,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":96,"fiber_id":2680,"pid":96,"subject":"Async::Task","object_id":2688,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":147,"fiber_id":2712,"pid":147,"subject":"Async::Task","object_id":2720,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":69,"fiber_id":2408,"pid":69,"subject":"Async::Task","object_id":2416,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":150,"fiber_id":2984,"pid":150,"subject":"Async::Task","object_id":2992,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":39,"fiber_id":2696,"pid":39,"subject":"Async::Task","object_id":2704,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":123,"fiber_id":2840,"pid":123,"subject":"Async::Task","object_id":2848,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":63,"fiber_id":2424,"pid":63,"subject":"Async::Task","object_id":2432,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":183,"fiber_id":3048,"pid":183,"subject":"Async::Task","object_id":3056,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":96,"fiber_id":2696,"pid":96,"subject":"Async::Task","object_id":2704,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":177,"fiber_id":3416,"pid":177,"subject":"Async::Task","object_id":3424,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":144,"fiber_id":3464,"pid":144,"subject":"Async::Task","object_id":3472,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":12,"fiber_id":2024,"pid":12,"subject":"Async::Task","object_id":2032,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":165,"fiber_id":3352,"pid":165,"subject":"Async::Task","object_id":3360,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":9,"fiber_id":2344,"pid":9,"subject":"Async::Task","object_id":2352,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":33,"fiber_id":2392,"pid":33,"subject":"Async::Task","object_id":2400,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":126,"fiber_id":3096,"pid":126,"subject":"Async::Task","object_id":3104,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":39,"fiber_id":2712,"pid":39,"subject":"Async::Task","object_id":2720,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":177,"fiber_id":3432,"pid":177,"subject":"Async::Task","object_id":3440,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":168,"fiber_id":3304,"pid":168,"subject":"Async::Task","object_id":3312,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":135,"fiber_id":2888,"pid":135,"subject":"Async::Task","object_id":2896,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":132,"fiber_id":3016,"pid":132,"subject":"Async::Task","object_id":3024,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":93,"fiber_id":2904,"pid":93,"subject":"Async::Task","object_id":2912,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":105,"fiber_id":2680,"pid":105,"subject":"Async::Task","object_id":2688,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":177,"fiber_id":3448,"pid":177,"subject":"Async::Task","object_id":3456,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":129,"fiber_id":2872,"pid":129,"subject":"Async::Task","object_id":2880,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":132,"fiber_id":3032,"pid":132,"subject":"Async::Task","object_id":3040,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":171,"fiber_id":3448,"pid":171,"subject":"Async::Task","object_id":3456,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":18,"fiber_id":2184,"pid":18,"subject":"Async::Task","object_id":2192,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":114,"fiber_id":3048,"pid":114,"subject":"Async::Task","object_id":3056,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":192,"fiber_id":3448,"pid":192,"subject":"Async::Task","object_id":3456,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":165,"fiber_id":3368,"pid":165,"subject":"Async::Task","object_id":3376,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":87,"fiber_id":2408,"pid":87,"subject":"Async::Task","object_id":2416,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":30,"fiber_id":2440,"pid":30,"subject":"Async::Task","object_id":2448,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":27,"fiber_id":1800,"pid":27,"subject":"Async::Task","object_id":1808,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":150,"fiber_id":3000,"pid":150,"subject":"Async::Task","object_id":3008,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":48,"fiber_id":2520,"pid":48,"subject":"Async::Task","object_id":2528,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":126,"fiber_id":3112,"pid":126,"subject":"Async::Task","object_id":3120,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":150,"fiber_id":3016,"pid":150,"subject":"Async::Task","object_id":3024,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":21,"fiber_id":2328,"pid":21,"subject":"Async::Task","object_id":2336,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":177,"fiber_id":3464,"pid":177,"subject":"Async::Task","object_id":3472,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":129,"fiber_id":2888,"pid":129,"subject":"Async::Task","object_id":2896,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":21,"fiber_id":2344,"pid":21,"subject":"Async::Task","object_id":2352,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":174,"fiber_id":3592,"pid":174,"subject":"Async::Task","object_id":3600,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":63,"fiber_id":2440,"pid":63,"subject":"Async::Task","object_id":2448,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":186,"fiber_id":3464,"pid":186,"subject":"Async::Task","object_id":3472,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":66,"fiber_id":2712,"pid":66,"subject":"Async::Task","object_id":2720,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":183,"fiber_id":3064,"pid":183,"subject":"Async::Task","object_id":3072,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":57,"fiber_id":2264,"pid":57,"subject":"Async::Task","object_id":2272,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":165,"fiber_id":3384,"pid":165,"subject":"Async::Task","object_id":3392,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":144,"fiber_id":3480,"pid":144,"subject":"Async::Task","object_id":3488,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":9,"fiber_id":2360,"pid":9,"subject":"Async::Task","object_id":2368,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":21,"fiber_id":2360,"pid":21,"subject":"Async::Task","object_id":2368,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":126,"fiber_id":3128,"pid":126,"subject":"Async::Task","object_id":3136,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":63,"fiber_id":2456,"pid":63,"subject":"Async::Task","object_id":2464,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":66,"fiber_id":2728,"pid":66,"subject":"Async::Task","object_id":2736,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":111,"fiber_id":2872,"pid":111,"subject":"Async::Task","object_id":2880,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":9,"fiber_id":2376,"pid":9,"subject":"Async::Task","object_id":2384,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":186,"fiber_id":3480,"pid":186,"subject":"Async::Task","object_id":3488,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":81,"fiber_id":2696,"pid":81,"subject":"Async::Task","object_id":2704,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":126,"fiber_id":3144,"pid":126,"subject":"Async::Task","object_id":3152,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":66,"fiber_id":2744,"pid":66,"subject":"Async::Task","object_id":2752,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":135,"fiber_id":2904,"pid":135,"subject":"Async::Task","object_id":2912,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":198,"fiber_id":3480,"pid":198,"subject":"Async::Task","object_id":3488,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":147,"fiber_id":2728,"pid":147,"subject":"Async::Task","object_id":2736,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":45,"fiber_id":2504,"pid":45,"subject":"Async::Task","object_id":2512,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":168,"fiber_id":3320,"pid":168,"subject":"Async::Task","object_id":3328,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":156,"fiber_id":3192,"pid":156,"subject":"Async::Task","object_id":3200,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":48,"fiber_id":2536,"pid":48,"subject":"Async::Task","object_id":2544,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":150,"fiber_id":3032,"pid":150,"subject":"Async::Task","object_id":3040,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":189,"fiber_id":3880,"pid":189,"subject":"Async::Task","object_id":3888,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":93,"fiber_id":2920,"pid":93,"subject":"Async::Task","object_id":2928,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":69,"fiber_id":2424,"pid":69,"subject":"Async::Task","object_id":2432,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":81,"fiber_id":2712,"pid":81,"subject":"Async::Task","object_id":2720,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":78,"fiber_id":3016,"pid":78,"subject":"Async::Task","object_id":3024,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":27,"fiber_id":1816,"pid":27,"subject":"Async::Task","object_id":1824,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":12,"fiber_id":2040,"pid":12,"subject":"Async::Task","object_id":2048,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":126,"fiber_id":3160,"pid":126,"subject":"Async::Task","object_id":3168,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":183,"fiber_id":3080,"pid":183,"subject":"Async::Task","object_id":3088,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":18,"fiber_id":2200,"pid":18,"subject":"Async::Task","object_id":2208,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":93,"fiber_id":2936,"pid":93,"subject":"Async::Task","object_id":2944,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":168,"fiber_id":3336,"pid":168,"subject":"Async::Task","object_id":3344,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":57,"fiber_id":2280,"pid":57,"subject":"Async::Task","object_id":2288,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":144,"fiber_id":3496,"pid":144,"subject":"Async::Task","object_id":3504,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":15,"fiber_id":2136,"pid":15,"subject":"Async::Task","object_id":2144,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":33,"fiber_id":2408,"pid":33,"subject":"Async::Task","object_id":2416,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":18,"fiber_id":2216,"pid":18,"subject":"Async::Task","object_id":2224,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":135,"fiber_id":2920,"pid":135,"subject":"Async::Task","object_id":2928,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":36,"fiber_id":2536,"pid":36,"subject":"Async::Task","object_id":2544,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":117,"fiber_id":2648,"pid":117,"subject":"Async::Task","object_id":2656,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":168,"fiber_id":3352,"pid":168,"subject":"Async::Task","object_id":3360,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":120,"fiber_id":2952,"pid":120,"subject":"Async::Task","object_id":2960,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":9,"fiber_id":2392,"pid":9,"subject":"Async::Task","object_id":2400,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":75,"fiber_id":3000,"pid":75,"subject":"Async::Task","object_id":3008,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":24,"fiber_id":2120,"pid":24,"subject":"Async::Task","object_id":2128,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":198,"fiber_id":3496,"pid":198,"subject":"Async::Task","object_id":3504,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":36,"fiber_id":2552,"pid":36,"subject":"Async::Task","object_id":2560,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":105,"fiber_id":2696,"pid":105,"subject":"Async::Task","object_id":2704,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":153,"fiber_id":3224,"pid":153,"subject":"Async::Task","object_id":3232,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":69,"fiber_id":2440,"pid":69,"subject":"Async::Task","object_id":2448,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":66,"fiber_id":2760,"pid":66,"subject":"Async::Task","object_id":2768,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":174,"fiber_id":3608,"pid":174,"subject":"Async::Task","object_id":3616,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":123,"fiber_id":2856,"pid":123,"subject":"Async::Task","object_id":2864,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":21,"fiber_id":2376,"pid":21,"subject":"Async::Task","object_id":2384,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":75,"fiber_id":3016,"pid":75,"subject":"Async::Task","object_id":3024,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":99,"fiber_id":2600,"pid":99,"subject":"Async::Task","object_id":2608,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":15,"fiber_id":2152,"pid":15,"subject":"Async::Task","object_id":2160,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":81,"fiber_id":2728,"pid":81,"subject":"Async::Task","object_id":2736,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":63,"fiber_id":2472,"pid":63,"subject":"Async::Task","object_id":2480,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":90,"fiber_id":3112,"pid":90,"subject":"Async::Task","object_id":3120,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":147,"fiber_id":2744,"pid":147,"subject":"Async::Task","object_id":2752,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":72,"fiber_id":2776,"pid":72,"subject":"Async::Task","object_id":2784,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":45,"fiber_id":2520,"pid":45,"subject":"Async::Task","object_id":2528,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":123,"fiber_id":2872,"pid":123,"subject":"Async::Task","object_id":2880,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":165,"fiber_id":3400,"pid":165,"subject":"Async::Task","object_id":3408,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":12,"fiber_id":2056,"pid":12,"subject":"Async::Task","object_id":2064,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":24,"fiber_id":2136,"pid":24,"subject":"Async::Task","object_id":2144,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":15,"fiber_id":2168,"pid":15,"subject":"Async::Task","object_id":2176,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":84,"fiber_id":2568,"pid":84,"subject":"Async::Task","object_id":2576,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":156,"fiber_id":3208,"pid":156,"subject":"Async::Task","object_id":3216,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":27,"fiber_id":1832,"pid":27,"subject":"Async::Task","object_id":1840,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":144,"fiber_id":3512,"pid":144,"subject":"Async::Task","object_id":3520,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":60,"fiber_id":2712,"pid":60,"subject":"Async::Task","object_id":2720,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":108,"fiber_id":2728,"pid":108,"subject":"Async::Task","object_id":2736,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":195,"fiber_id":3592,"pid":195,"subject":"Async::Task","object_id":3600,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":99,"fiber_id":2616,"pid":99,"subject":"Async::Task","object_id":2624,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":111,"fiber_id":2888,"pid":111,"subject":"Async::Task","object_id":2896,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":117,"fiber_id":2664,"pid":117,"subject":"Async::Task","object_id":2672,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":153,"fiber_id":3240,"pid":153,"subject":"Async::Task","object_id":3248,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":174,"fiber_id":3624,"pid":174,"subject":"Async::Task","object_id":3632,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":15,"fiber_id":2184,"pid":15,"subject":"Async::Task","object_id":2192,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":186,"fiber_id":3496,"pid":186,"subject":"Async::Task","object_id":3504,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":159,"fiber_id":3144,"pid":159,"subject":"Async::Task","object_id":3152,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":9,"fiber_id":2408,"pid":9,"subject":"Async::Task","object_id":2416,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":84,"fiber_id":2584,"pid":84,"subject":"Async::Task","object_id":2592,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":63,"fiber_id":2488,"pid":63,"subject":"Async::Task","object_id":2496,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":132,"fiber_id":3048,"pid":132,"subject":"Async::Task","object_id":3056,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":27,"fiber_id":1848,"pid":27,"subject":"Async::Task","object_id":1856,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":111,"fiber_id":2904,"pid":111,"subject":"Async::Task","object_id":2912,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":81,"fiber_id":2744,"pid":81,"subject":"Async::Task","object_id":2752,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":114,"fiber_id":3064,"pid":114,"subject":"Async::Task","object_id":3072,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":87,"fiber_id":2424,"pid":87,"subject":"Async::Task","object_id":2432,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":96,"fiber_id":2712,"pid":96,"subject":"Async::Task","object_id":2720,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":168,"fiber_id":3368,"pid":168,"subject":"Async::Task","object_id":3376,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":48,"fiber_id":2552,"pid":48,"subject":"Async::Task","object_id":2560,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":159,"fiber_id":3160,"pid":159,"subject":"Async::Task","object_id":3168,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":144,"fiber_id":3528,"pid":144,"subject":"Async::Task","object_id":3536,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":135,"fiber_id":2936,"pid":135,"subject":"Async::Task","object_id":2944,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":45,"fiber_id":2536,"pid":45,"subject":"Async::Task","object_id":2544,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":132,"fiber_id":3064,"pid":132,"subject":"Async::Task","object_id":3072,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":39,"fiber_id":2728,"pid":39,"subject":"Async::Task","object_id":2736,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":153,"fiber_id":3256,"pid":153,"subject":"Async::Task","object_id":3264,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":156,"fiber_id":3224,"pid":156,"subject":"Async::Task","object_id":3232,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":63,"fiber_id":2504,"pid":63,"subject":"Async::Task","object_id":2512,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":111,"fiber_id":2920,"pid":111,"subject":"Async::Task","object_id":2928,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":168,"fiber_id":3384,"pid":168,"subject":"Async::Task","object_id":3392,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":96,"fiber_id":2728,"pid":96,"subject":"Async::Task","object_id":2736,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":48,"fiber_id":2568,"pid":48,"subject":"Async::Task","object_id":2576,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":57,"fiber_id":2296,"pid":57,"subject":"Async::Task","object_id":2304,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":72,"fiber_id":2792,"pid":72,"subject":"Async::Task","object_id":2800,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":165,"fiber_id":3416,"pid":165,"subject":"Async::Task","object_id":3424,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":66,"fiber_id":2776,"pid":66,"subject":"Async::Task","object_id":2784,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":153,"fiber_id":3272,"pid":153,"subject":"Async::Task","object_id":3280,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":30,"fiber_id":2456,"pid":30,"subject":"Async::Task","object_id":2464,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":81,"fiber_id":2760,"pid":81,"subject":"Async::Task","object_id":2768,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":162,"fiber_id":3192,"pid":162,"subject":"Async::Task","object_id":3200,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":135,"fiber_id":2952,"pid":135,"subject":"Async::Task","object_id":2960,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":15,"fiber_id":2200,"pid":15,"subject":"Async::Task","object_id":2208,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":177,"fiber_id":3480,"pid":177,"subject":"Async::Task","object_id":3488,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":78,"fiber_id":3032,"pid":78,"subject":"Async::Task","object_id":3040,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":60,"fiber_id":2728,"pid":60,"subject":"Async::Task","object_id":2736,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":39,"fiber_id":2744,"pid":39,"subject":"Async::Task","object_id":2752,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":87,"fiber_id":2440,"pid":87,"subject":"Async::Task","object_id":2448,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":132,"fiber_id":3080,"pid":132,"subject":"Async::Task","object_id":3088,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":117,"fiber_id":2680,"pid":117,"subject":"Async::Task","object_id":2688,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":114,"fiber_id":3080,"pid":114,"subject":"Async::Task","object_id":3088,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":99,"fiber_id":2632,"pid":99,"subject":"Async::Task","object_id":2640,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":177,"fiber_id":3496,"pid":177,"subject":"Async::Task","object_id":3504,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":54,"fiber_id":2824,"pid":54,"subject":"Async::Task","object_id":2832,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":66,"fiber_id":2792,"pid":66,"subject":"Async::Task","object_id":2800,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":75,"fiber_id":3032,"pid":75,"subject":"Async::Task","object_id":3040,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":126,"fiber_id":3176,"pid":126,"subject":"Async::Task","object_id":3184,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":33,"fiber_id":2424,"pid":33,"subject":"Async::Task","object_id":2432,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":165,"fiber_id":3432,"pid":165,"subject":"Async::Task","object_id":3440,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":99,"fiber_id":2648,"pid":99,"subject":"Async::Task","object_id":2656,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":63,"fiber_id":2520,"pid":63,"subject":"Async::Task","object_id":2528,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":72,"fiber_id":2808,"pid":72,"subject":"Async::Task","object_id":2816,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":93,"fiber_id":2952,"pid":93,"subject":"Async::Task","object_id":2960,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":180,"fiber_id":3352,"pid":180,"subject":"Async::Task","object_id":3360,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":162,"fiber_id":3208,"pid":162,"subject":"Async::Task","object_id":3216,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":9,"fiber_id":2424,"pid":9,"subject":"Async::Task","object_id":2432,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":51,"fiber_id":2616,"pid":51,"subject":"Async::Task","object_id":2624,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":138,"fiber_id":3080,"pid":138,"subject":"Async::Task","object_id":3088,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":129,"fiber_id":2904,"pid":129,"subject":"Async::Task","object_id":2912,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":45,"fiber_id":2552,"pid":45,"subject":"Async::Task","object_id":2560,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":78,"fiber_id":3048,"pid":78,"subject":"Async::Task","object_id":3056,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":57,"fiber_id":2312,"pid":57,"subject":"Async::Task","object_id":2320,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":183,"fiber_id":3096,"pid":183,"subject":"Async::Task","object_id":3104,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":111,"fiber_id":2936,"pid":111,"subject":"Async::Task","object_id":2944,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":99,"fiber_id":2664,"pid":99,"subject":"Async::Task","object_id":2672,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":24,"fiber_id":2152,"pid":24,"subject":"Async::Task","object_id":2160,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":18,"fiber_id":2232,"pid":18,"subject":"Async::Task","object_id":2240,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":159,"fiber_id":3176,"pid":159,"subject":"Async::Task","object_id":3184,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":57,"fiber_id":2328,"pid":57,"subject":"Async::Task","object_id":2336,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":126,"fiber_id":3192,"pid":126,"subject":"Async::Task","object_id":3200,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":105,"fiber_id":2712,"pid":105,"subject":"Async::Task","object_id":2720,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":54,"fiber_id":2840,"pid":54,"subject":"Async::Task","object_id":2848,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":147,"fiber_id":2760,"pid":147,"subject":"Async::Task","object_id":2768,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":87,"fiber_id":2456,"pid":87,"subject":"Async::Task","object_id":2464,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":75,"fiber_id":3048,"pid":75,"subject":"Async::Task","object_id":3056,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":120,"fiber_id":2968,"pid":120,"subject":"Async::Task","object_id":2976,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":186,"fiber_id":3512,"pid":186,"subject":"Async::Task","object_id":3520,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":96,"fiber_id":2744,"pid":96,"subject":"Async::Task","object_id":2752,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":39,"fiber_id":2760,"pid":39,"subject":"Async::Task","object_id":2768,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":102,"fiber_id":2840,"pid":102,"subject":"Async::Task","object_id":2848,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":69,"fiber_id":2456,"pid":69,"subject":"Async::Task","object_id":2464,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":195,"fiber_id":3608,"pid":195,"subject":"Async::Task","object_id":3616,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":186,"fiber_id":3528,"pid":186,"subject":"Async::Task","object_id":3536,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":165,"fiber_id":3448,"pid":165,"subject":"Async::Task","object_id":3456,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":24,"fiber_id":2168,"pid":24,"subject":"Async::Task","object_id":2176,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":72,"fiber_id":2824,"pid":72,"subject":"Async::Task","object_id":2832,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":27,"fiber_id":1864,"pid":27,"subject":"Async::Task","object_id":1872,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":102,"fiber_id":2856,"pid":102,"subject":"Async::Task","object_id":2864,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":78,"fiber_id":3064,"pid":78,"subject":"Async::Task","object_id":3072,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":138,"fiber_id":3096,"pid":138,"subject":"Async::Task","object_id":3104,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":186,"fiber_id":3544,"pid":186,"subject":"Async::Task","object_id":3552,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":132,"fiber_id":3096,"pid":132,"subject":"Async::Task","object_id":3104,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":174,"fiber_id":3640,"pid":174,"subject":"Async::Task","object_id":3648,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":96,"fiber_id":2760,"pid":96,"subject":"Async::Task","object_id":2768,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":81,"fiber_id":2776,"pid":81,"subject":"Async::Task","object_id":2784,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":114,"fiber_id":3096,"pid":114,"subject":"Async::Task","object_id":3104,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":39,"fiber_id":2776,"pid":39,"subject":"Async::Task","object_id":2784,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":147,"fiber_id":2776,"pid":147,"subject":"Async::Task","object_id":2784,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":156,"fiber_id":3240,"pid":156,"subject":"Async::Task","object_id":3248,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":141,"fiber_id":3192,"pid":141,"subject":"Async::Task","object_id":3200,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":171,"fiber_id":3464,"pid":171,"subject":"Async::Task","object_id":3472,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":75,"fiber_id":3064,"pid":75,"subject":"Async::Task","object_id":3072,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":153,"fiber_id":3288,"pid":153,"subject":"Async::Task","object_id":3296,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":114,"fiber_id":3112,"pid":114,"subject":"Async::Task","object_id":3120,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":189,"fiber_id":3896,"pid":189,"subject":"Async::Task","object_id":3904,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":150,"fiber_id":3048,"pid":150,"subject":"Async::Task","object_id":3056,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":156,"fiber_id":3256,"pid":156,"subject":"Async::Task","object_id":3264,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":135,"fiber_id":2968,"pid":135,"subject":"Async::Task","object_id":2976,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":123,"fiber_id":2888,"pid":123,"subject":"Async::Task","object_id":2896,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":174,"fiber_id":3656,"pid":174,"subject":"Async::Task","object_id":3664,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":12,"fiber_id":2072,"pid":12,"subject":"Async::Task","object_id":2080,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":132,"fiber_id":3112,"pid":132,"subject":"Async::Task","object_id":3120,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":87,"fiber_id":2472,"pid":87,"subject":"Async::Task","object_id":2480,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":186,"fiber_id":3560,"pid":186,"subject":"Async::Task","object_id":3568,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":81,"fiber_id":2792,"pid":81,"subject":"Async::Task","object_id":2800,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":39,"fiber_id":2792,"pid":39,"subject":"Async::Task","object_id":2800,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":150,"fiber_id":3064,"pid":150,"subject":"Async::Task","object_id":3072,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":21,"fiber_id":2392,"pid":21,"subject":"Async::Task","object_id":2400,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":30,"fiber_id":2472,"pid":30,"subject":"Async::Task","object_id":2480,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":159,"fiber_id":3192,"pid":159,"subject":"Async::Task","object_id":3200,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":69,"fiber_id":2472,"pid":69,"subject":"Async::Task","object_id":2480,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":9,"fiber_id":2440,"pid":9,"subject":"Async::Task","object_id":2448,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":141,"fiber_id":3208,"pid":141,"subject":"Async::Task","object_id":3216,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":66,"fiber_id":2808,"pid":66,"subject":"Async::Task","object_id":2816,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":117,"fiber_id":2696,"pid":117,"subject":"Async::Task","object_id":2704,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":177,"fiber_id":3512,"pid":177,"subject":"Async::Task","object_id":3520,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":153,"fiber_id":3304,"pid":153,"subject":"Async::Task","object_id":3312,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":63,"fiber_id":2536,"pid":63,"subject":"Async::Task","object_id":2544,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":12,"fiber_id":2088,"pid":12,"subject":"Async::Task","object_id":2096,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":198,"fiber_id":3512,"pid":198,"subject":"Async::Task","object_id":3520,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":45,"fiber_id":2568,"pid":45,"subject":"Async::Task","object_id":2576,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":132,"fiber_id":3128,"pid":132,"subject":"Async::Task","object_id":3136,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":108,"fiber_id":2744,"pid":108,"subject":"Async::Task","object_id":2752,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":189,"fiber_id":3912,"pid":189,"subject":"Async::Task","object_id":3920,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":12,"fiber_id":2104,"pid":12,"subject":"Async::Task","object_id":2112,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":111,"fiber_id":2952,"pid":111,"subject":"Async::Task","object_id":2960,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":60,"fiber_id":2744,"pid":60,"subject":"Async::Task","object_id":2752,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":15,"fiber_id":2216,"pid":15,"subject":"Async::Task","object_id":2224,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":153,"fiber_id":3320,"pid":153,"subject":"Async::Task","object_id":3328,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":123,"fiber_id":2904,"pid":123,"subject":"Async::Task","object_id":2912,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":174,"fiber_id":3672,"pid":174,"subject":"Async::Task","object_id":3680,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":78,"fiber_id":3080,"pid":78,"subject":"Async::Task","object_id":3088,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":24,"fiber_id":2184,"pid":24,"subject":"Async::Task","object_id":2192,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":126,"fiber_id":3208,"pid":126,"subject":"Async::Task","object_id":3216,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":81,"fiber_id":2808,"pid":81,"subject":"Async::Task","object_id":2816,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":177,"fiber_id":3528,"pid":177,"subject":"Async::Task","object_id":3536,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":168,"fiber_id":3400,"pid":168,"subject":"Async::Task","object_id":3408,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":183,"fiber_id":3112,"pid":183,"subject":"Async::Task","object_id":3120,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":105,"fiber_id":2728,"pid":105,"subject":"Async::Task","object_id":2736,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":36,"fiber_id":2568,"pid":36,"subject":"Async::Task","object_id":2576,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":138,"fiber_id":3112,"pid":138,"subject":"Async::Task","object_id":3120,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":81,"fiber_id":2824,"pid":81,"subject":"Async::Task","object_id":2832,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":177,"fiber_id":3544,"pid":177,"subject":"Async::Task","object_id":3552,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":99,"fiber_id":2680,"pid":99,"subject":"Async::Task","object_id":2688,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":60,"fiber_id":2760,"pid":60,"subject":"Async::Task","object_id":2768,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":33,"fiber_id":2440,"pid":33,"subject":"Async::Task","object_id":2448,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":189,"fiber_id":3928,"pid":189,"subject":"Async::Task","object_id":3936,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":192,"fiber_id":3464,"pid":192,"subject":"Async::Task","object_id":3472,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":135,"fiber_id":2984,"pid":135,"subject":"Async::Task","object_id":2992,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":108,"fiber_id":2760,"pid":108,"subject":"Async::Task","object_id":2768,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":129,"fiber_id":2920,"pid":129,"subject":"Async::Task","object_id":2928,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":156,"fiber_id":3272,"pid":156,"subject":"Async::Task","object_id":3280,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":183,"fiber_id":3128,"pid":183,"subject":"Async::Task","object_id":3136,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":96,"fiber_id":2776,"pid":96,"subject":"Async::Task","object_id":2784,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":162,"fiber_id":3224,"pid":162,"subject":"Async::Task","object_id":3232,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":174,"fiber_id":3688,"pid":174,"subject":"Async::Task","object_id":3696,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":141,"fiber_id":3224,"pid":141,"subject":"Async::Task","object_id":3232,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":120,"fiber_id":2984,"pid":120,"subject":"Async::Task","object_id":2992,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":81,"fiber_id":2840,"pid":81,"subject":"Async::Task","object_id":2848,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":108,"fiber_id":2776,"pid":108,"subject":"Async::Task","object_id":2784,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":105,"fiber_id":2744,"pid":105,"subject":"Async::Task","object_id":2752,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":189,"fiber_id":3944,"pid":189,"subject":"Async::Task","object_id":3952,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":159,"fiber_id":3208,"pid":159,"subject":"Async::Task","object_id":3216,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":192,"fiber_id":3480,"pid":192,"subject":"Async::Task","object_id":3488,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":102,"fiber_id":2872,"pid":102,"subject":"Async::Task","object_id":2880,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":33,"fiber_id":2456,"pid":33,"subject":"Async::Task","object_id":2464,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":144,"fiber_id":3544,"pid":144,"subject":"Async::Task","object_id":3552,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":42,"fiber_id":2376,"pid":42,"subject":"Async::Task","object_id":2384,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":171,"fiber_id":3480,"pid":171,"subject":"Async::Task","object_id":3488,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":51,"fiber_id":2632,"pid":51,"subject":"Async::Task","object_id":2640,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":183,"fiber_id":3144,"pid":183,"subject":"Async::Task","object_id":3152,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":186,"fiber_id":3576,"pid":186,"subject":"Async::Task","object_id":3584,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":138,"fiber_id":3128,"pid":138,"subject":"Async::Task","object_id":3136,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":147,"fiber_id":2792,"pid":147,"subject":"Async::Task","object_id":2800,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":141,"fiber_id":3240,"pid":141,"subject":"Async::Task","object_id":3248,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":72,"fiber_id":2840,"pid":72,"subject":"Async::Task","object_id":2848,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":54,"fiber_id":2856,"pid":54,"subject":"Async::Task","object_id":2864,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":45,"fiber_id":2584,"pid":45,"subject":"Async::Task","object_id":2592,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":12,"fiber_id":2120,"pid":12,"subject":"Async::Task","object_id":2128,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":174,"fiber_id":3704,"pid":174,"subject":"Async::Task","object_id":3712,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":84,"fiber_id":2600,"pid":84,"subject":"Async::Task","object_id":2608,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":15,"fiber_id":2232,"pid":15,"subject":"Async::Task","object_id":2240,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":111,"fiber_id":2968,"pid":111,"subject":"Async::Task","object_id":2976,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":81,"fiber_id":2856,"pid":81,"subject":"Async::Task","object_id":2864,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":12,"fiber_id":2136,"pid":12,"subject":"Async::Task","object_id":2144,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":144,"fiber_id":3560,"pid":144,"subject":"Async::Task","object_id":3568,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":165,"fiber_id":3464,"pid":165,"subject":"Async::Task","object_id":3472,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":30,"fiber_id":2488,"pid":30,"subject":"Async::Task","object_id":2496,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":60,"fiber_id":2776,"pid":60,"subject":"Async::Task","object_id":2784,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":45,"fiber_id":2600,"pid":45,"subject":"Async::Task","object_id":2608,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":141,"fiber_id":3256,"pid":141,"subject":"Async::Task","object_id":3264,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":84,"fiber_id":2616,"pid":84,"subject":"Async::Task","object_id":2624,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":138,"fiber_id":3144,"pid":138,"subject":"Async::Task","object_id":3152,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":99,"fiber_id":2696,"pid":99,"subject":"Async::Task","object_id":2704,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":93,"fiber_id":2968,"pid":93,"subject":"Async::Task","object_id":2976,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":54,"fiber_id":2872,"pid":54,"subject":"Async::Task","object_id":2880,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":24,"fiber_id":2200,"pid":24,"subject":"Async::Task","object_id":2208,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":42,"fiber_id":2392,"pid":42,"subject":"Async::Task","object_id":2400,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":30,"fiber_id":2504,"pid":30,"subject":"Async::Task","object_id":2512,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":120,"fiber_id":3000,"pid":120,"subject":"Async::Task","object_id":3008,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":171,"fiber_id":3496,"pid":171,"subject":"Async::Task","object_id":3504,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":72,"fiber_id":2856,"pid":72,"subject":"Async::Task","object_id":2864,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":69,"fiber_id":2488,"pid":69,"subject":"Async::Task","object_id":2496,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":198,"fiber_id":3528,"pid":198,"subject":"Async::Task","object_id":3536,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":57,"fiber_id":2344,"pid":57,"subject":"Async::Task","object_id":2352,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":33,"fiber_id":2472,"pid":33,"subject":"Async::Task","object_id":2480,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":147,"fiber_id":2808,"pid":147,"subject":"Async::Task","object_id":2816,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":162,"fiber_id":3240,"pid":162,"subject":"Async::Task","object_id":3248,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":174,"fiber_id":3720,"pid":174,"subject":"Async::Task","object_id":3728,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":171,"fiber_id":3512,"pid":171,"subject":"Async::Task","object_id":3520,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":24,"fiber_id":2216,"pid":24,"subject":"Async::Task","object_id":2224,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":189,"fiber_id":3960,"pid":189,"subject":"Async::Task","object_id":3968,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":36,"fiber_id":2584,"pid":36,"subject":"Async::Task","object_id":2592,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":147,"fiber_id":2824,"pid":147,"subject":"Async::Task","object_id":2832,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":186,"fiber_id":3592,"pid":186,"subject":"Async::Task","object_id":3600,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":96,"fiber_id":2792,"pid":96,"subject":"Async::Task","object_id":2800,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":177,"fiber_id":3560,"pid":177,"subject":"Async::Task","object_id":3568,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":162,"fiber_id":3256,"pid":162,"subject":"Async::Task","object_id":3264,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":24,"fiber_id":2232,"pid":24,"subject":"Async::Task","object_id":2240,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":186,"fiber_id":3608,"pid":186,"subject":"Async::Task","object_id":3616,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":111,"fiber_id":2984,"pid":111,"subject":"Async::Task","object_id":2992,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":63,"fiber_id":2552,"pid":63,"subject":"Async::Task","object_id":2560,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":162,"fiber_id":3272,"pid":162,"subject":"Async::Task","object_id":3280,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":93,"fiber_id":2984,"pid":93,"subject":"Async::Task","object_id":2992,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":129,"fiber_id":2936,"pid":129,"subject":"Async::Task","object_id":2944,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":102,"fiber_id":2888,"pid":102,"subject":"Async::Task","object_id":2896,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":180,"fiber_id":3368,"pid":180,"subject":"Async::Task","object_id":3376,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":120,"fiber_id":3016,"pid":120,"subject":"Async::Task","object_id":3024,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":54,"fiber_id":2888,"pid":54,"subject":"Async::Task","object_id":2896,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":105,"fiber_id":2760,"pid":105,"subject":"Async::Task","object_id":2768,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":24,"fiber_id":2248,"pid":24,"subject":"Async::Task","object_id":2256,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":45,"fiber_id":2616,"pid":45,"subject":"Async::Task","object_id":2624,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":174,"fiber_id":3736,"pid":174,"subject":"Async::Task","object_id":3744,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":135,"fiber_id":3000,"pid":135,"subject":"Async::Task","object_id":3008,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":174,"fiber_id":3752,"pid":174,"subject":"Async::Task","object_id":3760,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":183,"fiber_id":3160,"pid":183,"subject":"Async::Task","object_id":3168,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":117,"fiber_id":2712,"pid":117,"subject":"Async::Task","object_id":2720,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":159,"fiber_id":3224,"pid":159,"subject":"Async::Task","object_id":3232,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":174,"fiber_id":3768,"pid":174,"subject":"Async::Task","object_id":3776,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":24,"fiber_id":2264,"pid":24,"subject":"Async::Task","object_id":2272,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":177,"fiber_id":3576,"pid":177,"subject":"Async::Task","object_id":3584,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":171,"fiber_id":3528,"pid":171,"subject":"Async::Task","object_id":3536,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":63,"fiber_id":2568,"pid":63,"subject":"Async::Task","object_id":2576,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":159,"fiber_id":3240,"pid":159,"subject":"Async::Task","object_id":3248,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":33,"fiber_id":2488,"pid":33,"subject":"Async::Task","object_id":2496,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":135,"fiber_id":3016,"pid":135,"subject":"Async::Task","object_id":3024,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":162,"fiber_id":3288,"pid":162,"subject":"Async::Task","object_id":3296,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":195,"fiber_id":3624,"pid":195,"subject":"Async::Task","object_id":3632,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":198,"fiber_id":3544,"pid":198,"subject":"Async::Task","object_id":3552,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":171,"fiber_id":3544,"pid":171,"subject":"Async::Task","object_id":3552,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":105,"fiber_id":2776,"pid":105,"subject":"Async::Task","object_id":2784,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":24,"fiber_id":2280,"pid":24,"subject":"Async::Task","object_id":2288,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":144,"fiber_id":3576,"pid":144,"subject":"Async::Task","object_id":3584,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":15,"fiber_id":2248,"pid":15,"subject":"Async::Task","object_id":2256,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":27,"fiber_id":1880,"pid":27,"subject":"Async::Task","object_id":1888,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":132,"fiber_id":3144,"pid":132,"subject":"Async::Task","object_id":3152,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":21,"fiber_id":2408,"pid":21,"subject":"Async::Task","object_id":2416,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":180,"fiber_id":3384,"pid":180,"subject":"Async::Task","object_id":3392,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":15,"fiber_id":2264,"pid":15,"subject":"Async::Task","object_id":2272,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":63,"fiber_id":2584,"pid":63,"subject":"Async::Task","object_id":2592,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":21,"fiber_id":2424,"pid":21,"subject":"Async::Task","object_id":2432,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":39,"fiber_id":2808,"pid":39,"subject":"Async::Task","object_id":2816,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":156,"fiber_id":3288,"pid":156,"subject":"Async::Task","object_id":3296,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":57,"fiber_id":2360,"pid":57,"subject":"Async::Task","object_id":2368,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":93,"fiber_id":3000,"pid":93,"subject":"Async::Task","object_id":3008,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":84,"fiber_id":2632,"pid":84,"subject":"Async::Task","object_id":2640,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":177,"fiber_id":3592,"pid":177,"subject":"Async::Task","object_id":3600,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":24,"fiber_id":2296,"pid":24,"subject":"Async::Task","object_id":2304,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":168,"fiber_id":3416,"pid":168,"subject":"Async::Task","object_id":3424,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":147,"fiber_id":2840,"pid":147,"subject":"Async::Task","object_id":2848,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":192,"fiber_id":3496,"pid":192,"subject":"Async::Task","object_id":3504,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":153,"fiber_id":3336,"pid":153,"subject":"Async::Task","object_id":3344,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":27,"fiber_id":1896,"pid":27,"subject":"Async::Task","object_id":1904,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":195,"fiber_id":3640,"pid":195,"subject":"Async::Task","object_id":3648,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":87,"fiber_id":2488,"pid":87,"subject":"Async::Task","object_id":2496,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":150,"fiber_id":3080,"pid":150,"subject":"Async::Task","object_id":3088,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":69,"fiber_id":2504,"pid":69,"subject":"Async::Task","object_id":2512,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":198,"fiber_id":3560,"pid":198,"subject":"Async::Task","object_id":3568,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":60,"fiber_id":2792,"pid":60,"subject":"Async::Task","object_id":2800,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":45,"fiber_id":2632,"pid":45,"subject":"Async::Task","object_id":2640,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":105,"fiber_id":2792,"pid":105,"subject":"Async::Task","object_id":2800,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":30,"fiber_id":2520,"pid":30,"subject":"Async::Task","object_id":2528,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":165,"fiber_id":3480,"pid":165,"subject":"Async::Task","object_id":3488,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":171,"fiber_id":3560,"pid":171,"subject":"Async::Task","object_id":3568,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":33,"fiber_id":2504,"pid":33,"subject":"Async::Task","object_id":2512,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":129,"fiber_id":2952,"pid":129,"subject":"Async::Task","object_id":2960,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":147,"fiber_id":2856,"pid":147,"subject":"Async::Task","object_id":2864,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":198,"fiber_id":3576,"pid":198,"subject":"Async::Task","object_id":3584,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":60,"fiber_id":2808,"pid":60,"subject":"Async::Task","object_id":2816,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":114,"fiber_id":3128,"pid":114,"subject":"Async::Task","object_id":3136,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":138,"fiber_id":3160,"pid":138,"subject":"Async::Task","object_id":3168,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":87,"fiber_id":2504,"pid":87,"subject":"Async::Task","object_id":2512,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":84,"fiber_id":2648,"pid":84,"subject":"Async::Task","object_id":2656,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":69,"fiber_id":2520,"pid":69,"subject":"Async::Task","object_id":2528,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":144,"fiber_id":3592,"pid":144,"subject":"Async::Task","object_id":3600,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":99,"fiber_id":2712,"pid":99,"subject":"Async::Task","object_id":2720,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":180,"fiber_id":3400,"pid":180,"subject":"Async::Task","object_id":3408,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":138,"fiber_id":3176,"pid":138,"subject":"Async::Task","object_id":3184,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":195,"fiber_id":3656,"pid":195,"subject":"Async::Task","object_id":3664,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":63,"fiber_id":2600,"pid":63,"subject":"Async::Task","object_id":2608,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":84,"fiber_id":2664,"pid":84,"subject":"Async::Task","object_id":2672,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":162,"fiber_id":3304,"pid":162,"subject":"Async::Task","object_id":3312,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":114,"fiber_id":3144,"pid":114,"subject":"Async::Task","object_id":3152,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":105,"fiber_id":2808,"pid":105,"subject":"Async::Task","object_id":2816,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":72,"fiber_id":2872,"pid":72,"subject":"Async::Task","object_id":2880,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":171,"fiber_id":3576,"pid":171,"subject":"Async::Task","object_id":3584,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":69,"fiber_id":2536,"pid":69,"subject":"Async::Task","object_id":2544,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":141,"fiber_id":3272,"pid":141,"subject":"Async::Task","object_id":3280,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":54,"fiber_id":2904,"pid":54,"subject":"Async::Task","object_id":2912,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":102,"fiber_id":2904,"pid":102,"subject":"Async::Task","object_id":2912,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":99,"fiber_id":2728,"pid":99,"subject":"Async::Task","object_id":2736,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":57,"fiber_id":2376,"pid":57,"subject":"Async::Task","object_id":2384,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":195,"fiber_id":3672,"pid":195,"subject":"Async::Task","object_id":3680,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":36,"fiber_id":2600,"pid":36,"subject":"Async::Task","object_id":2608,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":156,"fiber_id":3304,"pid":156,"subject":"Async::Task","object_id":3312,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":183,"fiber_id":3176,"pid":183,"subject":"Async::Task","object_id":3184,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":153,"fiber_id":3352,"pid":153,"subject":"Async::Task","object_id":3360,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":93,"fiber_id":3016,"pid":93,"subject":"Async::Task","object_id":3024,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":9,"fiber_id":2456,"pid":9,"subject":"Async::Task","object_id":2464,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":129,"fiber_id":2968,"pid":129,"subject":"Async::Task","object_id":2976,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":144,"fiber_id":3608,"pid":144,"subject":"Async::Task","object_id":3616,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":93,"fiber_id":3032,"pid":93,"subject":"Async::Task","object_id":3040,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":69,"fiber_id":2552,"pid":69,"subject":"Async::Task","object_id":2560,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":192,"fiber_id":3512,"pid":192,"subject":"Async::Task","object_id":3520,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":21,"fiber_id":2440,"pid":21,"subject":"Async::Task","object_id":2448,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":33,"fiber_id":2520,"pid":33,"subject":"Async::Task","object_id":2528,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":99,"fiber_id":2744,"pid":99,"subject":"Async::Task","object_id":2752,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":60,"fiber_id":2824,"pid":60,"subject":"Async::Task","object_id":2832,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":168,"fiber_id":3432,"pid":168,"subject":"Async::Task","object_id":3440,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":120,"fiber_id":3032,"pid":120,"subject":"Async::Task","object_id":3040,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":96,"fiber_id":2808,"pid":96,"subject":"Async::Task","object_id":2816,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":135,"fiber_id":3032,"pid":135,"subject":"Async::Task","object_id":3040,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":168,"fiber_id":3448,"pid":168,"subject":"Async::Task","object_id":3456,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":36,"fiber_id":2616,"pid":36,"subject":"Async::Task","object_id":2624,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":126,"fiber_id":3224,"pid":126,"subject":"Async::Task","object_id":3232,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":12,"fiber_id":2152,"pid":12,"subject":"Async::Task","object_id":2160,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":150,"fiber_id":3096,"pid":150,"subject":"Async::Task","object_id":3104,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":186,"fiber_id":3624,"pid":186,"subject":"Async::Task","object_id":3632,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":81,"fiber_id":2872,"pid":81,"subject":"Async::Task","object_id":2880,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":18,"fiber_id":2248,"pid":18,"subject":"Async::Task","object_id":2256,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":51,"fiber_id":2648,"pid":51,"subject":"Async::Task","object_id":2656,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":60,"fiber_id":2840,"pid":60,"subject":"Async::Task","object_id":2848,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":150,"fiber_id":3112,"pid":150,"subject":"Async::Task","object_id":3120,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":93,"fiber_id":3048,"pid":93,"subject":"Async::Task","object_id":3056,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":99,"fiber_id":2760,"pid":99,"subject":"Async::Task","object_id":2768,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":126,"fiber_id":3240,"pid":126,"subject":"Async::Task","object_id":3248,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":159,"fiber_id":3256,"pid":159,"subject":"Async::Task","object_id":3264,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":36,"fiber_id":2632,"pid":36,"subject":"Async::Task","object_id":2640,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":153,"fiber_id":3368,"pid":153,"subject":"Async::Task","object_id":3376,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":60,"fiber_id":2856,"pid":60,"subject":"Async::Task","object_id":2864,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":168,"fiber_id":3464,"pid":168,"subject":"Async::Task","object_id":3472,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":57,"fiber_id":2392,"pid":57,"subject":"Async::Task","object_id":2400,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":69,"fiber_id":2568,"pid":69,"subject":"Async::Task","object_id":2576,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":162,"fiber_id":3320,"pid":162,"subject":"Async::Task","object_id":3328,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":120,"fiber_id":3048,"pid":120,"subject":"Async::Task","object_id":3056,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":183,"fiber_id":3192,"pid":183,"subject":"Async::Task","object_id":3200,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":24,"fiber_id":2312,"pid":24,"subject":"Async::Task","object_id":2320,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":150,"fiber_id":3128,"pid":150,"subject":"Async::Task","object_id":3136,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":165,"fiber_id":3496,"pid":165,"subject":"Async::Task","object_id":3504,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":18,"fiber_id":2264,"pid":18,"subject":"Async::Task","object_id":2272,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":36,"fiber_id":2648,"pid":36,"subject":"Async::Task","object_id":2656,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":33,"fiber_id":2536,"pid":33,"subject":"Async::Task","object_id":2544,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":54,"fiber_id":2920,"pid":54,"subject":"Async::Task","object_id":2928,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":111,"fiber_id":3000,"pid":111,"subject":"Async::Task","object_id":3008,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":69,"fiber_id":2584,"pid":69,"subject":"Async::Task","object_id":2592,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":171,"fiber_id":3592,"pid":171,"subject":"Async::Task","object_id":3600,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":18,"fiber_id":2280,"pid":18,"subject":"Async::Task","object_id":2288,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":21,"fiber_id":2456,"pid":21,"subject":"Async::Task","object_id":2464,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":93,"fiber_id":3064,"pid":93,"subject":"Async::Task","object_id":3072,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":51,"fiber_id":2664,"pid":51,"subject":"Async::Task","object_id":2672,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":99,"fiber_id":2776,"pid":99,"subject":"Async::Task","object_id":2784,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":153,"fiber_id":3384,"pid":153,"subject":"Async::Task","object_id":3392,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":27,"fiber_id":1912,"pid":27,"subject":"Async::Task","object_id":1920,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":165,"fiber_id":3512,"pid":165,"subject":"Async::Task","object_id":3520,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":138,"fiber_id":3192,"pid":138,"subject":"Async::Task","object_id":3200,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":66,"fiber_id":2824,"pid":66,"subject":"Async::Task","object_id":2832,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":30,"fiber_id":2536,"pid":30,"subject":"Async::Task","object_id":2544,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":150,"fiber_id":3144,"pid":150,"subject":"Async::Task","object_id":3152,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":159,"fiber_id":3272,"pid":159,"subject":"Async::Task","object_id":3280,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":144,"fiber_id":3624,"pid":144,"subject":"Async::Task","object_id":3632,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":75,"fiber_id":3080,"pid":75,"subject":"Async::Task","object_id":3088,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":18,"fiber_id":2296,"pid":18,"subject":"Async::Task","object_id":2304,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":153,"fiber_id":3400,"pid":153,"subject":"Async::Task","object_id":3408,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":150,"fiber_id":3160,"pid":150,"subject":"Async::Task","object_id":3168,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":96,"fiber_id":2824,"pid":96,"subject":"Async::Task","object_id":2832,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":12,"fiber_id":2168,"pid":12,"subject":"Async::Task","object_id":2176,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":141,"fiber_id":3288,"pid":141,"subject":"Async::Task","object_id":3296,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":192,"fiber_id":3528,"pid":192,"subject":"Async::Task","object_id":3536,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":126,"fiber_id":3256,"pid":126,"subject":"Async::Task","object_id":3264,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":18,"fiber_id":2312,"pid":18,"subject":"Async::Task","object_id":2320,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":57,"fiber_id":2408,"pid":57,"subject":"Async::Task","object_id":2416,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":171,"fiber_id":3608,"pid":171,"subject":"Async::Task","object_id":3616,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":33,"fiber_id":2552,"pid":33,"subject":"Async::Task","object_id":2560,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":147,"fiber_id":2872,"pid":147,"subject":"Async::Task","object_id":2880,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":21,"fiber_id":2472,"pid":21,"subject":"Async::Task","object_id":2480,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":105,"fiber_id":2824,"pid":105,"subject":"Async::Task","object_id":2832,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":180,"fiber_id":3416,"pid":180,"subject":"Async::Task","object_id":3424,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":69,"fiber_id":2600,"pid":69,"subject":"Async::Task","object_id":2608,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":81,"fiber_id":2888,"pid":81,"subject":"Async::Task","object_id":2896,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":153,"fiber_id":3416,"pid":153,"subject":"Async::Task","object_id":3424,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":24,"fiber_id":2328,"pid":24,"subject":"Async::Task","object_id":2336,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":117,"fiber_id":2728,"pid":117,"subject":"Async::Task","object_id":2736,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":84,"fiber_id":2680,"pid":84,"subject":"Async::Task","object_id":2688,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":192,"fiber_id":3544,"pid":192,"subject":"Async::Task","object_id":3552,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":57,"fiber_id":2424,"pid":57,"subject":"Async::Task","object_id":2432,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":33,"fiber_id":2568,"pid":33,"subject":"Async::Task","object_id":2576,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":81,"fiber_id":2904,"pid":81,"subject":"Async::Task","object_id":2912,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":111,"fiber_id":3016,"pid":111,"subject":"Async::Task","object_id":3024,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":153,"fiber_id":3432,"pid":153,"subject":"Async::Task","object_id":3440,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":102,"fiber_id":2920,"pid":102,"subject":"Async::Task","object_id":2928,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":159,"fiber_id":3288,"pid":159,"subject":"Async::Task","object_id":3296,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":18,"fiber_id":2328,"pid":18,"subject":"Async::Task","object_id":2336,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":144,"fiber_id":3640,"pid":144,"subject":"Async::Task","object_id":3648,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":165,"fiber_id":3528,"pid":165,"subject":"Async::Task","object_id":3536,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":180,"fiber_id":3432,"pid":180,"subject":"Async::Task","object_id":3440,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":9,"fiber_id":2472,"pid":9,"subject":"Async::Task","object_id":2480,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":75,"fiber_id":3096,"pid":75,"subject":"Async::Task","object_id":3104,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":12,"fiber_id":2184,"pid":12,"subject":"Async::Task","object_id":2192,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":57,"fiber_id":2440,"pid":57,"subject":"Async::Task","object_id":2448,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":141,"fiber_id":3304,"pid":141,"subject":"Async::Task","object_id":3312,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":147,"fiber_id":2888,"pid":147,"subject":"Async::Task","object_id":2896,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":51,"fiber_id":2680,"pid":51,"subject":"Async::Task","object_id":2688,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":69,"fiber_id":2616,"pid":69,"subject":"Async::Task","object_id":2624,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":75,"fiber_id":3112,"pid":75,"subject":"Async::Task","object_id":3120,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":111,"fiber_id":3032,"pid":111,"subject":"Async::Task","object_id":3040,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":12,"fiber_id":2200,"pid":12,"subject":"Async::Task","object_id":2208,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":165,"fiber_id":3544,"pid":165,"subject":"Async::Task","object_id":3552,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":24,"fiber_id":2344,"pid":24,"subject":"Async::Task","object_id":2352,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":189,"fiber_id":3976,"pid":189,"subject":"Async::Task","object_id":3984,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":102,"fiber_id":2936,"pid":102,"subject":"Async::Task","object_id":2944,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":87,"fiber_id":2520,"pid":87,"subject":"Async::Task","object_id":2528,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":45,"fiber_id":2648,"pid":45,"subject":"Async::Task","object_id":2656,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":129,"fiber_id":2984,"pid":129,"subject":"Async::Task","object_id":2992,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":93,"fiber_id":3080,"pid":93,"subject":"Async::Task","object_id":3088,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":192,"fiber_id":3560,"pid":192,"subject":"Async::Task","object_id":3568,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":138,"fiber_id":3208,"pid":138,"subject":"Async::Task","object_id":3216,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":33,"fiber_id":2584,"pid":33,"subject":"Async::Task","object_id":2592,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":84,"fiber_id":2696,"pid":84,"subject":"Async::Task","object_id":2704,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":177,"fiber_id":3608,"pid":177,"subject":"Async::Task","object_id":3616,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":195,"fiber_id":3688,"pid":195,"subject":"Async::Task","object_id":3696,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":111,"fiber_id":3048,"pid":111,"subject":"Async::Task","object_id":3056,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":108,"fiber_id":2792,"pid":108,"subject":"Async::Task","object_id":2800,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":87,"fiber_id":2536,"pid":87,"subject":"Async::Task","object_id":2544,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":117,"fiber_id":2744,"pid":117,"subject":"Async::Task","object_id":2752,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":81,"fiber_id":2920,"pid":81,"subject":"Async::Task","object_id":2928,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":30,"fiber_id":2552,"pid":30,"subject":"Async::Task","object_id":2560,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":45,"fiber_id":2664,"pid":45,"subject":"Async::Task","object_id":2672,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":195,"fiber_id":3704,"pid":195,"subject":"Async::Task","object_id":3712,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":111,"fiber_id":3064,"pid":111,"subject":"Async::Task","object_id":3072,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":129,"fiber_id":3000,"pid":129,"subject":"Async::Task","object_id":3008,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":141,"fiber_id":3320,"pid":141,"subject":"Async::Task","object_id":3328,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":30,"fiber_id":2568,"pid":30,"subject":"Async::Task","object_id":2576,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":81,"fiber_id":2936,"pid":81,"subject":"Async::Task","object_id":2944,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":69,"fiber_id":2632,"pid":69,"subject":"Async::Task","object_id":2640,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":63,"fiber_id":2616,"pid":63,"subject":"Async::Task","object_id":2624,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":18,"fiber_id":2344,"pid":18,"subject":"Async::Task","object_id":2352,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":21,"fiber_id":2488,"pid":21,"subject":"Async::Task","object_id":2496,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":93,"fiber_id":3096,"pid":93,"subject":"Async::Task","object_id":3104,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":54,"fiber_id":2936,"pid":54,"subject":"Async::Task","object_id":2944,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":18,"fiber_id":2360,"pid":18,"subject":"Async::Task","object_id":2368,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":150,"fiber_id":3176,"pid":150,"subject":"Async::Task","object_id":3184,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":99,"fiber_id":2792,"pid":99,"subject":"Async::Task","object_id":2800,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":177,"fiber_id":3624,"pid":177,"subject":"Async::Task","object_id":3632,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":111,"fiber_id":3080,"pid":111,"subject":"Async::Task","object_id":3088,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":165,"fiber_id":3560,"pid":165,"subject":"Async::Task","object_id":3568,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":27,"fiber_id":1928,"pid":27,"subject":"Async::Task","object_id":1936,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":33,"fiber_id":2600,"pid":33,"subject":"Async::Task","object_id":2608,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":93,"fiber_id":3112,"pid":93,"subject":"Async::Task","object_id":3120,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":183,"fiber_id":3208,"pid":183,"subject":"Async::Task","object_id":3216,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":9,"fiber_id":2488,"pid":9,"subject":"Async::Task","object_id":2496,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":111,"fiber_id":3096,"pid":111,"subject":"Async::Task","object_id":3104,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":150,"fiber_id":3192,"pid":150,"subject":"Async::Task","object_id":3200,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":168,"fiber_id":3480,"pid":168,"subject":"Async::Task","object_id":3488,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":60,"fiber_id":2872,"pid":60,"subject":"Async::Task","object_id":2880,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":66,"fiber_id":2840,"pid":66,"subject":"Async::Task","object_id":2848,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":198,"fiber_id":3592,"pid":198,"subject":"Async::Task","object_id":3600,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":87,"fiber_id":2552,"pid":87,"subject":"Async::Task","object_id":2560,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":81,"fiber_id":2952,"pid":81,"subject":"Async::Task","object_id":2960,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":45,"fiber_id":2680,"pid":45,"subject":"Async::Task","object_id":2688,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":135,"fiber_id":3048,"pid":135,"subject":"Async::Task","object_id":3056,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":108,"fiber_id":2808,"pid":108,"subject":"Async::Task","object_id":2816,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":135,"fiber_id":3064,"pid":135,"subject":"Async::Task","object_id":3072,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":48,"fiber_id":2584,"pid":48,"subject":"Async::Task","object_id":2592,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":138,"fiber_id":3224,"pid":138,"subject":"Async::Task","object_id":3232,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":111,"fiber_id":3112,"pid":111,"subject":"Async::Task","object_id":3120,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":141,"fiber_id":3336,"pid":141,"subject":"Async::Task","object_id":3344,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":15,"fiber_id":2280,"pid":15,"subject":"Async::Task","object_id":2288,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":102,"fiber_id":2952,"pid":102,"subject":"Async::Task","object_id":2960,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":18,"fiber_id":2376,"pid":18,"subject":"Async::Task","object_id":2384,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":147,"fiber_id":2904,"pid":147,"subject":"Async::Task","object_id":2912,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":183,"fiber_id":3224,"pid":183,"subject":"Async::Task","object_id":3232,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":12,"fiber_id":2216,"pid":12,"subject":"Async::Task","object_id":2224,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":24,"fiber_id":2360,"pid":24,"subject":"Async::Task","object_id":2368,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":69,"fiber_id":2648,"pid":69,"subject":"Async::Task","object_id":2656,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":81,"fiber_id":2968,"pid":81,"subject":"Async::Task","object_id":2976,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":189,"fiber_id":3992,"pid":189,"subject":"Async::Task","object_id":4000,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":30,"fiber_id":2584,"pid":30,"subject":"Async::Task","object_id":2592,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":24,"fiber_id":2376,"pid":24,"subject":"Async::Task","object_id":2384,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":156,"fiber_id":3320,"pid":156,"subject":"Async::Task","object_id":3328,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":60,"fiber_id":2888,"pid":60,"subject":"Async::Task","object_id":2896,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":87,"fiber_id":2568,"pid":87,"subject":"Async::Task","object_id":2576,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":183,"fiber_id":3240,"pid":183,"subject":"Async::Task","object_id":3248,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":27,"fiber_id":1944,"pid":27,"subject":"Async::Task","object_id":1952,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":141,"fiber_id":3352,"pid":141,"subject":"Async::Task","object_id":3360,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":57,"fiber_id":2456,"pid":57,"subject":"Async::Task","object_id":2464,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":198,"fiber_id":3608,"pid":198,"subject":"Async::Task","object_id":3616,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":108,"fiber_id":2824,"pid":108,"subject":"Async::Task","object_id":2832,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":12,"fiber_id":2232,"pid":12,"subject":"Async::Task","object_id":2240,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":111,"fiber_id":3128,"pid":111,"subject":"Async::Task","object_id":3136,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":156,"fiber_id":3336,"pid":156,"subject":"Async::Task","object_id":3344,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":138,"fiber_id":3240,"pid":138,"subject":"Async::Task","object_id":3248,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":75,"fiber_id":3128,"pid":75,"subject":"Async::Task","object_id":3136,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":177,"fiber_id":3640,"pid":177,"subject":"Async::Task","object_id":3648,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":18,"fiber_id":2392,"pid":18,"subject":"Async::Task","object_id":2400,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":66,"fiber_id":2856,"pid":66,"subject":"Async::Task","object_id":2864,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":12,"fiber_id":2248,"pid":12,"subject":"Async::Task","object_id":2256,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":15,"fiber_id":2296,"pid":15,"subject":"Async::Task","object_id":2304,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":192,"fiber_id":3576,"pid":192,"subject":"Async::Task","object_id":3584,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":150,"fiber_id":3208,"pid":150,"subject":"Async::Task","object_id":3216,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":84,"fiber_id":2712,"pid":84,"subject":"Async::Task","object_id":2720,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":138,"fiber_id":3256,"pid":138,"subject":"Async::Task","object_id":3264,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":60,"fiber_id":2904,"pid":60,"subject":"Async::Task","object_id":2912,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":36,"fiber_id":2664,"pid":36,"subject":"Async::Task","object_id":2672,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":159,"fiber_id":3304,"pid":159,"subject":"Async::Task","object_id":3312,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":171,"fiber_id":3624,"pid":171,"subject":"Async::Task","object_id":3632,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":153,"fiber_id":3448,"pid":153,"subject":"Async::Task","object_id":3456,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":12,"fiber_id":2264,"pid":12,"subject":"Async::Task","object_id":2272,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":36,"fiber_id":2680,"pid":36,"subject":"Async::Task","object_id":2688,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":51,"fiber_id":2696,"pid":51,"subject":"Async::Task","object_id":2704,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":156,"fiber_id":3352,"pid":156,"subject":"Async::Task","object_id":3360,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":15,"fiber_id":2312,"pid":15,"subject":"Async::Task","object_id":2320,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":114,"fiber_id":3160,"pid":114,"subject":"Async::Task","object_id":3168,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":21,"fiber_id":2504,"pid":21,"subject":"Async::Task","object_id":2512,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":117,"fiber_id":2760,"pid":117,"subject":"Async::Task","object_id":2768,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":57,"fiber_id":2472,"pid":57,"subject":"Async::Task","object_id":2480,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":30,"fiber_id":2600,"pid":30,"subject":"Async::Task","object_id":2608,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":174,"fiber_id":3784,"pid":174,"subject":"Async::Task","object_id":3792,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":36,"fiber_id":2696,"pid":36,"subject":"Async::Task","object_id":2704,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":24,"fiber_id":2392,"pid":24,"subject":"Async::Task","object_id":2400,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":192,"fiber_id":3592,"pid":192,"subject":"Async::Task","object_id":3600,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":21,"fiber_id":2520,"pid":21,"subject":"Async::Task","object_id":2528,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":126,"fiber_id":3272,"pid":126,"subject":"Async::Task","object_id":3280,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":102,"fiber_id":2968,"pid":102,"subject":"Async::Task","object_id":2976,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":186,"fiber_id":3640,"pid":186,"subject":"Async::Task","object_id":3648,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":129,"fiber_id":3016,"pid":129,"subject":"Async::Task","object_id":3024,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":63,"fiber_id":2632,"pid":63,"subject":"Async::Task","object_id":2640,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":24,"fiber_id":2408,"pid":24,"subject":"Async::Task","object_id":2416,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":57,"fiber_id":2488,"pid":57,"subject":"Async::Task","object_id":2496,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":84,"fiber_id":2728,"pid":84,"subject":"Async::Task","object_id":2736,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":159,"fiber_id":3320,"pid":159,"subject":"Async::Task","object_id":3328,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":108,"fiber_id":2840,"pid":108,"subject":"Async::Task","object_id":2848,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":66,"fiber_id":2872,"pid":66,"subject":"Async::Task","object_id":2880,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":111,"fiber_id":3144,"pid":111,"subject":"Async::Task","object_id":3152,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":69,"fiber_id":2664,"pid":69,"subject":"Async::Task","object_id":2672,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":99,"fiber_id":2808,"pid":99,"subject":"Async::Task","object_id":2816,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":180,"fiber_id":3448,"pid":180,"subject":"Async::Task","object_id":3456,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":108,"fiber_id":2856,"pid":108,"subject":"Async::Task","object_id":2864,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":69,"fiber_id":2680,"pid":69,"subject":"Async::Task","object_id":2688,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":27,"fiber_id":1960,"pid":27,"subject":"Async::Task","object_id":1968,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":39,"fiber_id":2824,"pid":39,"subject":"Async::Task","object_id":2832,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":159,"fiber_id":3336,"pid":159,"subject":"Async::Task","object_id":3344,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":147,"fiber_id":2920,"pid":147,"subject":"Async::Task","object_id":2928,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":36,"fiber_id":2712,"pid":36,"subject":"Async::Task","object_id":2720,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":51,"fiber_id":2712,"pid":51,"subject":"Async::Task","object_id":2720,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":126,"fiber_id":3288,"pid":126,"subject":"Async::Task","object_id":3296,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":15,"fiber_id":2328,"pid":15,"subject":"Async::Task","object_id":2336,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":111,"fiber_id":3160,"pid":111,"subject":"Async::Task","object_id":3168,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":153,"fiber_id":3464,"pid":153,"subject":"Async::Task","object_id":3472,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":33,"fiber_id":2616,"pid":33,"subject":"Async::Task","object_id":2624,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":150,"fiber_id":3224,"pid":150,"subject":"Async::Task","object_id":3232,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":171,"fiber_id":3640,"pid":171,"subject":"Async::Task","object_id":3648,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":198,"fiber_id":3624,"pid":198,"subject":"Async::Task","object_id":3632,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":195,"fiber_id":3720,"pid":195,"subject":"Async::Task","object_id":3728,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":78,"fiber_id":3096,"pid":78,"subject":"Async::Task","object_id":3104,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":51,"fiber_id":2728,"pid":51,"subject":"Async::Task","object_id":2736,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":12,"fiber_id":2280,"pid":12,"subject":"Async::Task","object_id":2288,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":75,"fiber_id":3144,"pid":75,"subject":"Async::Task","object_id":3152,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":183,"fiber_id":3256,"pid":183,"subject":"Async::Task","object_id":3264,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":144,"fiber_id":3656,"pid":144,"subject":"Async::Task","object_id":3664,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":195,"fiber_id":3736,"pid":195,"subject":"Async::Task","object_id":3744,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":24,"fiber_id":2424,"pid":24,"subject":"Async::Task","object_id":2432,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":36,"fiber_id":2728,"pid":36,"subject":"Async::Task","object_id":2736,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":153,"fiber_id":3480,"pid":153,"subject":"Async::Task","object_id":3488,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":39,"fiber_id":2840,"pid":39,"subject":"Async::Task","object_id":2848,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":75,"fiber_id":3160,"pid":75,"subject":"Async::Task","object_id":3168,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":111,"fiber_id":3176,"pid":111,"subject":"Async::Task","object_id":3184,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":138,"fiber_id":3272,"pid":138,"subject":"Async::Task","object_id":3280,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":60,"fiber_id":2920,"pid":60,"subject":"Async::Task","object_id":2928,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":108,"fiber_id":2872,"pid":108,"subject":"Async::Task","object_id":2880,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":105,"fiber_id":2840,"pid":105,"subject":"Async::Task","object_id":2848,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":150,"fiber_id":3240,"pid":150,"subject":"Async::Task","object_id":3248,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":177,"fiber_id":3656,"pid":177,"subject":"Async::Task","object_id":3664,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":45,"fiber_id":2696,"pid":45,"subject":"Async::Task","object_id":2704,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":24,"fiber_id":2440,"pid":24,"subject":"Async::Task","object_id":2448,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":69,"fiber_id":2696,"pid":69,"subject":"Async::Task","object_id":2704,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":78,"fiber_id":3112,"pid":78,"subject":"Async::Task","object_id":3120,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":147,"fiber_id":2936,"pid":147,"subject":"Async::Task","object_id":2944,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":141,"fiber_id":3368,"pid":141,"subject":"Async::Task","object_id":3376,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":99,"fiber_id":2824,"pid":99,"subject":"Async::Task","object_id":2832,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":81,"fiber_id":2984,"pid":81,"subject":"Async::Task","object_id":2992,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":27,"fiber_id":1976,"pid":27,"subject":"Async::Task","object_id":1984,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":72,"fiber_id":2888,"pid":72,"subject":"Async::Task","object_id":2896,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":186,"fiber_id":3656,"pid":186,"subject":"Async::Task","object_id":3664,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":54,"fiber_id":2952,"pid":54,"subject":"Async::Task","object_id":2960,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":99,"fiber_id":2840,"pid":99,"subject":"Async::Task","object_id":2848,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":174,"fiber_id":3800,"pid":174,"subject":"Async::Task","object_id":3808,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":12,"fiber_id":2296,"pid":12,"subject":"Async::Task","object_id":2304,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":105,"fiber_id":2856,"pid":105,"subject":"Async::Task","object_id":2864,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":54,"fiber_id":2968,"pid":54,"subject":"Async::Task","object_id":2976,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":72,"fiber_id":2904,"pid":72,"subject":"Async::Task","object_id":2912,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":198,"fiber_id":3640,"pid":198,"subject":"Async::Task","object_id":3648,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":33,"fiber_id":2632,"pid":33,"subject":"Async::Task","object_id":2640,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":180,"fiber_id":3464,"pid":180,"subject":"Async::Task","object_id":3472,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":186,"fiber_id":3672,"pid":186,"subject":"Async::Task","object_id":3680,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":51,"fiber_id":2744,"pid":51,"subject":"Async::Task","object_id":2752,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":72,"fiber_id":2920,"pid":72,"subject":"Async::Task","object_id":2928,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":156,"fiber_id":3368,"pid":156,"subject":"Async::Task","object_id":3376,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":189,"fiber_id":4008,"pid":189,"subject":"Async::Task","object_id":4016,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":96,"fiber_id":2840,"pid":96,"subject":"Async::Task","object_id":2848,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":117,"fiber_id":2776,"pid":117,"subject":"Async::Task","object_id":2784,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":18,"fiber_id":2408,"pid":18,"subject":"Async::Task","object_id":2416,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":72,"fiber_id":2936,"pid":72,"subject":"Async::Task","object_id":2944,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":45,"fiber_id":2712,"pid":45,"subject":"Async::Task","object_id":2720,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":153,"fiber_id":3496,"pid":153,"subject":"Async::Task","object_id":3504,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":147,"fiber_id":2952,"pid":147,"subject":"Async::Task","object_id":2960,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":111,"fiber_id":3192,"pid":111,"subject":"Async::Task","object_id":3200,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":156,"fiber_id":3384,"pid":156,"subject":"Async::Task","object_id":3392,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":39,"fiber_id":2856,"pid":39,"subject":"Async::Task","object_id":2864,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":99,"fiber_id":2856,"pid":99,"subject":"Async::Task","object_id":2864,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":84,"fiber_id":2744,"pid":84,"subject":"Async::Task","object_id":2752,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":147,"fiber_id":2968,"pid":147,"subject":"Async::Task","object_id":2976,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":156,"fiber_id":3400,"pid":156,"subject":"Async::Task","object_id":3408,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":51,"fiber_id":2760,"pid":51,"subject":"Async::Task","object_id":2768,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":99,"fiber_id":2872,"pid":99,"subject":"Async::Task","object_id":2880,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":87,"fiber_id":2584,"pid":87,"subject":"Async::Task","object_id":2592,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":111,"fiber_id":3208,"pid":111,"subject":"Async::Task","object_id":3216,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":66,"fiber_id":2888,"pid":66,"subject":"Async::Task","object_id":2896,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":90,"fiber_id":3128,"pid":90,"subject":"Async::Task","object_id":3136,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":99,"fiber_id":2888,"pid":99,"subject":"Async::Task","object_id":2896,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":27,"fiber_id":1992,"pid":27,"subject":"Async::Task","object_id":2000,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":18,"fiber_id":2424,"pid":18,"subject":"Async::Task","object_id":2432,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":192,"fiber_id":3608,"pid":192,"subject":"Async::Task","object_id":3616,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":198,"fiber_id":3656,"pid":198,"subject":"Async::Task","object_id":3664,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":30,"fiber_id":2616,"pid":30,"subject":"Async::Task","object_id":2624,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":15,"fiber_id":2344,"pid":15,"subject":"Async::Task","object_id":2352,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":186,"fiber_id":3688,"pid":186,"subject":"Async::Task","object_id":3696,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":189,"fiber_id":4024,"pid":189,"subject":"Async::Task","object_id":4032,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":96,"fiber_id":2856,"pid":96,"subject":"Async::Task","object_id":2864,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":15,"fiber_id":2360,"pid":15,"subject":"Async::Task","object_id":2368,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":168,"fiber_id":3496,"pid":168,"subject":"Async::Task","object_id":3504,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":111,"fiber_id":3224,"pid":111,"subject":"Async::Task","object_id":3232,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":93,"fiber_id":3128,"pid":93,"subject":"Async::Task","object_id":3136,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":12,"fiber_id":2312,"pid":12,"subject":"Async::Task","object_id":2320,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":9,"fiber_id":2504,"pid":9,"subject":"Async::Task","object_id":2512,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":15,"fiber_id":2376,"pid":15,"subject":"Async::Task","object_id":2384,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":48,"fiber_id":2600,"pid":48,"subject":"Async::Task","object_id":2608,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":99,"fiber_id":2904,"pid":99,"subject":"Async::Task","object_id":2912,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":189,"fiber_id":4040,"pid":189,"subject":"Async::Task","object_id":4048,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":96,"fiber_id":2872,"pid":96,"subject":"Async::Task","object_id":2880,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":18,"fiber_id":2440,"pid":18,"subject":"Async::Task","object_id":2448,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":156,"fiber_id":3416,"pid":156,"subject":"Async::Task","object_id":3424,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":24,"fiber_id":2456,"pid":24,"subject":"Async::Task","object_id":2464,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":114,"fiber_id":3176,"pid":114,"subject":"Async::Task","object_id":3184,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":45,"fiber_id":2728,"pid":45,"subject":"Async::Task","object_id":2736,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":24,"fiber_id":2472,"pid":24,"subject":"Async::Task","object_id":2480,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":57,"fiber_id":2504,"pid":57,"subject":"Async::Task","object_id":2512,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":162,"fiber_id":3336,"pid":162,"subject":"Async::Task","object_id":3344,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":153,"fiber_id":3512,"pid":153,"subject":"Async::Task","object_id":3520,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":87,"fiber_id":2600,"pid":87,"subject":"Async::Task","object_id":2608,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":192,"fiber_id":3624,"pid":192,"subject":"Async::Task","object_id":3632,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":33,"fiber_id":2648,"pid":33,"subject":"Async::Task","object_id":2656,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":72,"fiber_id":2952,"pid":72,"subject":"Async::Task","object_id":2960,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":177,"fiber_id":3672,"pid":177,"subject":"Async::Task","object_id":3680,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":87,"fiber_id":2616,"pid":87,"subject":"Async::Task","object_id":2624,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":192,"fiber_id":3640,"pid":192,"subject":"Async::Task","object_id":3648,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":30,"fiber_id":2632,"pid":30,"subject":"Async::Task","object_id":2640,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":9,"fiber_id":2520,"pid":9,"subject":"Async::Task","object_id":2528,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":87,"fiber_id":2632,"pid":87,"subject":"Async::Task","object_id":2640,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":27,"fiber_id":2008,"pid":27,"subject":"Async::Task","object_id":2016,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":192,"fiber_id":3656,"pid":192,"subject":"Async::Task","object_id":3664,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":162,"fiber_id":3352,"pid":162,"subject":"Async::Task","object_id":3360,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":189,"fiber_id":4056,"pid":189,"subject":"Async::Task","object_id":4064,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":87,"fiber_id":2648,"pid":87,"subject":"Async::Task","object_id":2656,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":114,"fiber_id":3192,"pid":114,"subject":"Async::Task","object_id":3200,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":174,"fiber_id":3816,"pid":174,"subject":"Async::Task","object_id":3824,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":195,"fiber_id":3752,"pid":195,"subject":"Async::Task","object_id":3760,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":165,"fiber_id":3576,"pid":165,"subject":"Async::Task","object_id":3584,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":90,"fiber_id":3144,"pid":90,"subject":"Async::Task","object_id":3152,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":117,"fiber_id":2792,"pid":117,"subject":"Async::Task","object_id":2800,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":192,"fiber_id":3672,"pid":192,"subject":"Async::Task","object_id":3680,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":72,"fiber_id":2968,"pid":72,"subject":"Async::Task","object_id":2976,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":87,"fiber_id":2664,"pid":87,"subject":"Async::Task","object_id":2672,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":114,"fiber_id":3208,"pid":114,"subject":"Async::Task","object_id":3216,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":111,"fiber_id":3240,"pid":111,"subject":"Async::Task","object_id":3248,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":183,"fiber_id":3272,"pid":183,"subject":"Async::Task","object_id":3280,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":153,"fiber_id":3528,"pid":153,"subject":"Async::Task","object_id":3536,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":117,"fiber_id":2808,"pid":117,"subject":"Async::Task","object_id":2816,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":165,"fiber_id":3592,"pid":165,"subject":"Async::Task","object_id":3600,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":129,"fiber_id":3032,"pid":129,"subject":"Async::Task","object_id":3040,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":156,"fiber_id":3432,"pid":156,"subject":"Async::Task","object_id":3440,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":72,"fiber_id":2984,"pid":72,"subject":"Async::Task","object_id":2992,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":66,"fiber_id":2904,"pid":66,"subject":"Async::Task","object_id":2912,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":33,"fiber_id":2664,"pid":33,"subject":"Async::Task","object_id":2672,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":111,"fiber_id":3256,"pid":111,"subject":"Async::Task","object_id":3264,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":153,"fiber_id":3544,"pid":153,"subject":"Async::Task","object_id":3552,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":180,"fiber_id":3480,"pid":180,"subject":"Async::Task","object_id":3488,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":165,"fiber_id":3608,"pid":165,"subject":"Async::Task","object_id":3616,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":57,"fiber_id":2520,"pid":57,"subject":"Async::Task","object_id":2528,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":150,"fiber_id":3256,"pid":150,"subject":"Async::Task","object_id":3264,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":198,"fiber_id":3672,"pid":198,"subject":"Async::Task","object_id":3680,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":144,"fiber_id":3672,"pid":144,"subject":"Async::Task","object_id":3680,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":117,"fiber_id":2824,"pid":117,"subject":"Async::Task","object_id":2832,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":156,"fiber_id":3448,"pid":156,"subject":"Async::Task","object_id":3456,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":72,"fiber_id":3000,"pid":72,"subject":"Async::Task","object_id":3008,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":129,"fiber_id":3048,"pid":129,"subject":"Async::Task","object_id":3056,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":111,"fiber_id":3272,"pid":111,"subject":"Async::Task","object_id":3280,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":165,"fiber_id":3624,"pid":165,"subject":"Async::Task","object_id":3632,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":63,"fiber_id":2648,"pid":63,"subject":"Async::Task","object_id":2656,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":66,"fiber_id":2920,"pid":66,"subject":"Async::Task","object_id":2928,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":144,"fiber_id":3688,"pid":144,"subject":"Async::Task","object_id":3696,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":156,"fiber_id":3464,"pid":156,"subject":"Async::Task","object_id":3472,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":117,"fiber_id":2840,"pid":117,"subject":"Async::Task","object_id":2848,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":54,"fiber_id":2984,"pid":54,"subject":"Async::Task","object_id":2992,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":195,"fiber_id":3768,"pid":195,"subject":"Async::Task","object_id":3776,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":180,"fiber_id":3496,"pid":180,"subject":"Async::Task","object_id":3504,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":162,"fiber_id":3368,"pid":162,"subject":"Async::Task","object_id":3376,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":111,"fiber_id":3288,"pid":111,"subject":"Async::Task","object_id":3296,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":93,"fiber_id":3144,"pid":93,"subject":"Async::Task","object_id":3152,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":129,"fiber_id":3064,"pid":129,"subject":"Async::Task","object_id":3072,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":171,"fiber_id":3656,"pid":171,"subject":"Async::Task","object_id":3664,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":63,"fiber_id":2664,"pid":63,"subject":"Async::Task","object_id":2672,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":90,"fiber_id":3160,"pid":90,"subject":"Async::Task","object_id":3168,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":165,"fiber_id":3640,"pid":165,"subject":"Async::Task","object_id":3648,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":156,"fiber_id":3480,"pid":156,"subject":"Async::Task","object_id":3488,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":195,"fiber_id":3784,"pid":195,"subject":"Async::Task","object_id":3792,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":66,"fiber_id":2936,"pid":66,"subject":"Async::Task","object_id":2944,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":72,"fiber_id":3016,"pid":72,"subject":"Async::Task","object_id":3024,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":138,"fiber_id":3288,"pid":138,"subject":"Async::Task","object_id":3296,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":198,"fiber_id":3688,"pid":198,"subject":"Async::Task","object_id":3696,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":162,"fiber_id":3384,"pid":162,"subject":"Async::Task","object_id":3392,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":93,"fiber_id":3160,"pid":93,"subject":"Async::Task","object_id":3168,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":69,"fiber_id":2712,"pid":69,"subject":"Async::Task","object_id":2720,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":129,"fiber_id":3080,"pid":129,"subject":"Async::Task","object_id":3088,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":63,"fiber_id":2680,"pid":63,"subject":"Async::Task","object_id":2688,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":153,"fiber_id":3560,"pid":153,"subject":"Async::Task","object_id":3568,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":144,"fiber_id":3704,"pid":144,"subject":"Async::Task","object_id":3712,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":123,"fiber_id":2920,"pid":123,"subject":"Async::Task","object_id":2928,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":156,"fiber_id":3496,"pid":156,"subject":"Async::Task","object_id":3504,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":177,"fiber_id":3688,"pid":177,"subject":"Async::Task","object_id":3696,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":87,"fiber_id":2680,"pid":87,"subject":"Async::Task","object_id":2688,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":138,"fiber_id":3304,"pid":138,"subject":"Async::Task","object_id":3312,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":165,"fiber_id":3656,"pid":165,"subject":"Async::Task","object_id":3664,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":66,"fiber_id":2952,"pid":66,"subject":"Async::Task","object_id":2960,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":129,"fiber_id":3096,"pid":129,"subject":"Async::Task","object_id":3104,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":162,"fiber_id":3400,"pid":162,"subject":"Async::Task","object_id":3408,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":195,"fiber_id":3800,"pid":195,"subject":"Async::Task","object_id":3808,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":111,"fiber_id":3304,"pid":111,"subject":"Async::Task","object_id":3312,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":156,"fiber_id":3512,"pid":156,"subject":"Async::Task","object_id":3520,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":123,"fiber_id":2936,"pid":123,"subject":"Async::Task","object_id":2944,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":24,"fiber_id":2488,"pid":24,"subject":"Async::Task","object_id":2496,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":99,"fiber_id":2920,"pid":99,"subject":"Async::Task","object_id":2928,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":162,"fiber_id":3416,"pid":162,"subject":"Async::Task","object_id":3424,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":102,"fiber_id":2984,"pid":102,"subject":"Async::Task","object_id":2992,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":147,"fiber_id":2984,"pid":147,"subject":"Async::Task","object_id":2992,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":51,"fiber_id":2776,"pid":51,"subject":"Async::Task","object_id":2784,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":123,"fiber_id":2952,"pid":123,"subject":"Async::Task","object_id":2960,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":57,"fiber_id":2536,"pid":57,"subject":"Async::Task","object_id":2544,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":99,"fiber_id":2936,"pid":99,"subject":"Async::Task","object_id":2944,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":27,"fiber_id":2024,"pid":27,"subject":"Async::Task","object_id":2032,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":123,"fiber_id":2968,"pid":123,"subject":"Async::Task","object_id":2976,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":96,"fiber_id":2888,"pid":96,"subject":"Async::Task","object_id":2896,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":108,"fiber_id":2888,"pid":108,"subject":"Async::Task","object_id":2896,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":129,"fiber_id":3112,"pid":129,"subject":"Async::Task","object_id":3120,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":186,"fiber_id":3704,"pid":186,"subject":"Async::Task","object_id":3712,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":180,"fiber_id":3512,"pid":180,"subject":"Async::Task","object_id":3520,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":45,"fiber_id":2744,"pid":45,"subject":"Async::Task","object_id":2752,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":111,"fiber_id":3320,"pid":111,"subject":"Async::Task","object_id":3328,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":105,"fiber_id":2872,"pid":105,"subject":"Async::Task","object_id":2880,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":189,"fiber_id":4072,"pid":189,"subject":"Async::Task","object_id":4080,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":81,"fiber_id":3000,"pid":81,"subject":"Async::Task","object_id":3008,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":150,"fiber_id":3272,"pid":150,"subject":"Async::Task","object_id":3280,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":48,"fiber_id":2616,"pid":48,"subject":"Async::Task","object_id":2624,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":96,"fiber_id":2904,"pid":96,"subject":"Async::Task","object_id":2912,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":12,"fiber_id":2328,"pid":12,"subject":"Async::Task","object_id":2336,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":84,"fiber_id":2760,"pid":84,"subject":"Async::Task","object_id":2768,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":180,"fiber_id":3528,"pid":180,"subject":"Async::Task","object_id":3536,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":141,"fiber_id":3384,"pid":141,"subject":"Async::Task","object_id":3392,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":48,"fiber_id":2632,"pid":48,"subject":"Async::Task","object_id":2640,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":159,"fiber_id":3352,"pid":159,"subject":"Async::Task","object_id":3360,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":99,"fiber_id":2952,"pid":99,"subject":"Async::Task","object_id":2960,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":27,"fiber_id":2040,"pid":27,"subject":"Async::Task","object_id":2048,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":117,"fiber_id":2856,"pid":117,"subject":"Async::Task","object_id":2864,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":24,"fiber_id":2504,"pid":24,"subject":"Async::Task","object_id":2512,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":141,"fiber_id":3400,"pid":141,"subject":"Async::Task","object_id":3408,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":15,"fiber_id":2392,"pid":15,"subject":"Async::Task","object_id":2400,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":99,"fiber_id":2968,"pid":99,"subject":"Async::Task","object_id":2976,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":27,"fiber_id":2056,"pid":27,"subject":"Async::Task","object_id":2064,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":81,"fiber_id":3016,"pid":81,"subject":"Async::Task","object_id":3024,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":30,"fiber_id":2648,"pid":30,"subject":"Async::Task","object_id":2656,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":168,"fiber_id":3512,"pid":168,"subject":"Async::Task","object_id":3520,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":48,"fiber_id":2648,"pid":48,"subject":"Async::Task","object_id":2656,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":15,"fiber_id":2408,"pid":15,"subject":"Async::Task","object_id":2416,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":57,"fiber_id":2552,"pid":57,"subject":"Async::Task","object_id":2560,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":117,"fiber_id":2872,"pid":117,"subject":"Async::Task","object_id":2880,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":27,"fiber_id":2072,"pid":27,"subject":"Async::Task","object_id":2080,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":102,"fiber_id":3000,"pid":102,"subject":"Async::Task","object_id":3008,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":15,"fiber_id":2424,"pid":15,"subject":"Async::Task","object_id":2432,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":60,"fiber_id":2936,"pid":60,"subject":"Async::Task","object_id":2944,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":12,"fiber_id":2344,"pid":12,"subject":"Async::Task","object_id":2352,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":129,"fiber_id":3128,"pid":129,"subject":"Async::Task","object_id":3136,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":183,"fiber_id":3288,"pid":183,"subject":"Async::Task","object_id":3296,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":24,"fiber_id":2520,"pid":24,"subject":"Async::Task","object_id":2528,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":135,"fiber_id":3080,"pid":135,"subject":"Async::Task","object_id":3088,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":27,"fiber_id":2088,"pid":27,"subject":"Async::Task","object_id":2096,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":174,"fiber_id":3832,"pid":174,"subject":"Async::Task","object_id":3840,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":45,"fiber_id":2760,"pid":45,"subject":"Async::Task","object_id":2768,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":192,"fiber_id":3688,"pid":192,"subject":"Async::Task","object_id":3696,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":189,"fiber_id":4088,"pid":189,"subject":"Async::Task","object_id":4096,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":33,"fiber_id":2680,"pid":33,"subject":"Async::Task","object_id":2688,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":39,"fiber_id":2872,"pid":39,"subject":"Async::Task","object_id":2880,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":192,"fiber_id":3704,"pid":192,"subject":"Async::Task","object_id":3712,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":141,"fiber_id":3416,"pid":141,"subject":"Async::Task","object_id":3424,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":78,"fiber_id":3128,"pid":78,"subject":"Async::Task","object_id":3136,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":99,"fiber_id":2984,"pid":99,"subject":"Async::Task","object_id":2992,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":18,"fiber_id":2456,"pid":18,"subject":"Async::Task","object_id":2464,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":177,"fiber_id":3704,"pid":177,"subject":"Async::Task","object_id":3712,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":102,"fiber_id":3016,"pid":102,"subject":"Async::Task","object_id":3024,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":183,"fiber_id":3304,"pid":183,"subject":"Async::Task","object_id":3312,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":84,"fiber_id":2776,"pid":84,"subject":"Async::Task","object_id":2784,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":174,"fiber_id":3848,"pid":174,"subject":"Async::Task","object_id":3856,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":9,"fiber_id":2536,"pid":9,"subject":"Async::Task","object_id":2544,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":57,"fiber_id":2568,"pid":57,"subject":"Async::Task","object_id":2576,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":12,"fiber_id":2360,"pid":12,"subject":"Async::Task","object_id":2368,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":144,"fiber_id":3720,"pid":144,"subject":"Async::Task","object_id":3728,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":138,"fiber_id":3320,"pid":138,"subject":"Async::Task","object_id":3328,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":72,"fiber_id":3032,"pid":72,"subject":"Async::Task","object_id":3040,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":186,"fiber_id":3720,"pid":186,"subject":"Async::Task","object_id":3728,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":111,"fiber_id":3336,"pid":111,"subject":"Async::Task","object_id":3344,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":45,"fiber_id":2776,"pid":45,"subject":"Async::Task","object_id":2784,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":15,"fiber_id":2440,"pid":15,"subject":"Async::Task","object_id":2448,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":135,"fiber_id":3096,"pid":135,"subject":"Async::Task","object_id":3104,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":33,"fiber_id":2696,"pid":33,"subject":"Async::Task","object_id":2704,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":93,"fiber_id":3176,"pid":93,"subject":"Async::Task","object_id":3184,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":9,"fiber_id":2552,"pid":9,"subject":"Async::Task","object_id":2560,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":162,"fiber_id":3432,"pid":162,"subject":"Async::Task","object_id":3440,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":78,"fiber_id":3144,"pid":78,"subject":"Async::Task","object_id":3152,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":102,"fiber_id":3032,"pid":102,"subject":"Async::Task","object_id":3040,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":129,"fiber_id":3144,"pid":129,"subject":"Async::Task","object_id":3152,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":162,"fiber_id":3448,"pid":162,"subject":"Async::Task","object_id":3456,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":114,"fiber_id":3224,"pid":114,"subject":"Async::Task","object_id":3232,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":174,"fiber_id":3864,"pid":174,"subject":"Async::Task","object_id":3872,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":78,"fiber_id":3160,"pid":78,"subject":"Async::Task","object_id":3168,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":168,"fiber_id":3528,"pid":168,"subject":"Async::Task","object_id":3536,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":111,"fiber_id":3352,"pid":111,"subject":"Async::Task","object_id":3360,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":15,"fiber_id":2456,"pid":15,"subject":"Async::Task","object_id":2464,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":63,"fiber_id":2696,"pid":63,"subject":"Async::Task","object_id":2704,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":141,"fiber_id":3432,"pid":141,"subject":"Async::Task","object_id":3440,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":72,"fiber_id":3048,"pid":72,"subject":"Async::Task","object_id":3056,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":33,"fiber_id":2712,"pid":33,"subject":"Async::Task","object_id":2720,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":87,"fiber_id":2696,"pid":87,"subject":"Async::Task","object_id":2704,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":195,"fiber_id":3816,"pid":195,"subject":"Async::Task","object_id":3824,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":183,"fiber_id":3320,"pid":183,"subject":"Async::Task","object_id":3328,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":198,"fiber_id":3704,"pid":198,"subject":"Async::Task","object_id":3712,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":192,"fiber_id":3720,"pid":192,"subject":"Async::Task","object_id":3728,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":18,"fiber_id":2472,"pid":18,"subject":"Async::Task","object_id":2480,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":81,"fiber_id":3032,"pid":81,"subject":"Async::Task","object_id":3040,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":111,"fiber_id":3368,"pid":111,"subject":"Async::Task","object_id":3376,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":27,"fiber_id":2104,"pid":27,"subject":"Async::Task","object_id":2112,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":78,"fiber_id":3176,"pid":78,"subject":"Async::Task","object_id":3184,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":141,"fiber_id":3448,"pid":141,"subject":"Async::Task","object_id":3456,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":24,"fiber_id":2536,"pid":24,"subject":"Async::Task","object_id":2544,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":177,"fiber_id":3720,"pid":177,"subject":"Async::Task","object_id":3728,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":147,"fiber_id":3000,"pid":147,"subject":"Async::Task","object_id":3008,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":111,"fiber_id":3384,"pid":111,"subject":"Async::Task","object_id":3392,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":72,"fiber_id":3064,"pid":72,"subject":"Async::Task","object_id":3072,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":54,"fiber_id":3000,"pid":54,"subject":"Async::Task","object_id":3008,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":117,"fiber_id":2888,"pid":117,"subject":"Async::Task","object_id":2896,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":186,"fiber_id":3736,"pid":186,"subject":"Async::Task","object_id":3744,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":177,"fiber_id":3736,"pid":177,"subject":"Async::Task","object_id":3744,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":126,"fiber_id":3304,"pid":126,"subject":"Async::Task","object_id":3312,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":168,"fiber_id":3544,"pid":168,"subject":"Async::Task","object_id":3552,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":48,"fiber_id":2664,"pid":48,"subject":"Async::Task","object_id":2672,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":144,"fiber_id":3736,"pid":144,"subject":"Async::Task","object_id":3744,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":102,"fiber_id":3048,"pid":102,"subject":"Async::Task","object_id":3056,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":141,"fiber_id":3464,"pid":141,"subject":"Async::Task","object_id":3472,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":168,"fiber_id":3560,"pid":168,"subject":"Async::Task","object_id":3568,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":180,"fiber_id":3544,"pid":180,"subject":"Async::Task","object_id":3552,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":198,"fiber_id":3720,"pid":198,"subject":"Async::Task","object_id":3728,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":87,"fiber_id":2712,"pid":87,"subject":"Async::Task","object_id":2720,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":48,"fiber_id":2680,"pid":48,"subject":"Async::Task","object_id":2688,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":141,"fiber_id":3480,"pid":141,"subject":"Async::Task","object_id":3488,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":87,"fiber_id":2728,"pid":87,"subject":"Async::Task","object_id":2736,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":72,"fiber_id":3080,"pid":72,"subject":"Async::Task","object_id":3088,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":153,"fiber_id":3576,"pid":153,"subject":"Async::Task","object_id":3584,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":150,"fiber_id":3288,"pid":150,"subject":"Async::Task","object_id":3296,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":117,"fiber_id":2904,"pid":117,"subject":"Async::Task","object_id":2912,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":102,"fiber_id":3064,"pid":102,"subject":"Async::Task","object_id":3072,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":72,"fiber_id":3096,"pid":72,"subject":"Async::Task","object_id":3104,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":180,"fiber_id":3560,"pid":180,"subject":"Async::Task","object_id":3568,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":24,"fiber_id":2552,"pid":24,"subject":"Async::Task","object_id":2560,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":15,"fiber_id":2472,"pid":15,"subject":"Async::Task","object_id":2480,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":108,"fiber_id":2904,"pid":108,"subject":"Async::Task","object_id":2912,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":72,"fiber_id":3112,"pid":72,"subject":"Async::Task","object_id":3120,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":84,"fiber_id":2792,"pid":84,"subject":"Async::Task","object_id":2800,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":126,"fiber_id":3320,"pid":126,"subject":"Async::Task","object_id":3328,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":60,"fiber_id":2952,"pid":60,"subject":"Async::Task","object_id":2960,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":171,"fiber_id":3672,"pid":171,"subject":"Async::Task","object_id":3680,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":138,"fiber_id":3336,"pid":138,"subject":"Async::Task","object_id":3344,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":183,"fiber_id":3336,"pid":183,"subject":"Async::Task","object_id":3344,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":84,"fiber_id":2808,"pid":84,"subject":"Async::Task","object_id":2816,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":126,"fiber_id":3336,"pid":126,"subject":"Async::Task","object_id":3344,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":60,"fiber_id":2968,"pid":60,"subject":"Async::Task","object_id":2976,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":162,"fiber_id":3464,"pid":162,"subject":"Async::Task","object_id":3472,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":69,"fiber_id":2728,"pid":69,"subject":"Async::Task","object_id":2736,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":102,"fiber_id":3080,"pid":102,"subject":"Async::Task","object_id":3088,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":93,"fiber_id":3192,"pid":93,"subject":"Async::Task","object_id":3200,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":78,"fiber_id":3192,"pid":78,"subject":"Async::Task","object_id":3200,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":159,"fiber_id":3368,"pid":159,"subject":"Async::Task","object_id":3376,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":162,"fiber_id":3512,"pid":162,"subject":"Async::Task","object_id":3520,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":9,"fiber_id":2568,"pid":9,"subject":"Async::Task","object_id":2576,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":150,"fiber_id":3320,"pid":150,"subject":"Async::Task","object_id":3328,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":78,"fiber_id":3208,"pid":78,"subject":"Async::Task","object_id":3216,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":123,"fiber_id":2984,"pid":123,"subject":"Async::Task","object_id":2992,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":162,"fiber_id":3528,"pid":162,"subject":"Async::Task","object_id":3536,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":9,"fiber_id":2584,"pid":9,"subject":"Async::Task","object_id":2592,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":33,"fiber_id":2728,"pid":33,"subject":"Async::Task","object_id":2736,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":15,"fiber_id":2520,"pid":15,"subject":"Async::Task","object_id":2528,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":168,"fiber_id":3576,"pid":168,"subject":"Async::Task","object_id":3584,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":9,"fiber_id":2600,"pid":9,"subject":"Async::Task","object_id":2608,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":147,"fiber_id":3016,"pid":147,"subject":"Async::Task","object_id":3024,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":18,"fiber_id":2488,"pid":18,"subject":"Async::Task","object_id":2496,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":15,"fiber_id":2488,"pid":15,"subject":"Async::Task","object_id":2496,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":180,"fiber_id":3576,"pid":180,"subject":"Async::Task","object_id":3584,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":192,"fiber_id":3736,"pid":192,"subject":"Async::Task","object_id":3744,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":153,"fiber_id":3592,"pid":153,"subject":"Async::Task","object_id":3600,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":12,"fiber_id":2376,"pid":12,"subject":"Async::Task","object_id":2384,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":183,"fiber_id":3352,"pid":183,"subject":"Async::Task","object_id":3360,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":81,"fiber_id":3048,"pid":81,"subject":"Async::Task","object_id":3056,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":66,"fiber_id":2968,"pid":66,"subject":"Async::Task","object_id":2976,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":60,"fiber_id":2984,"pid":60,"subject":"Async::Task","object_id":2992,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":150,"fiber_id":3304,"pid":150,"subject":"Async::Task","object_id":3312,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":111,"fiber_id":3400,"pid":111,"subject":"Async::Task","object_id":3408,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":192,"fiber_id":3752,"pid":192,"subject":"Async::Task","object_id":3760,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":138,"fiber_id":3352,"pid":138,"subject":"Async::Task","object_id":3360,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":69,"fiber_id":2744,"pid":69,"subject":"Async::Task","object_id":2752,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":45,"fiber_id":2792,"pid":45,"subject":"Async::Task","object_id":2800,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":93,"fiber_id":3208,"pid":93,"subject":"Async::Task","object_id":3216,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":156,"fiber_id":3528,"pid":156,"subject":"Async::Task","object_id":3536,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":84,"fiber_id":2824,"pid":84,"subject":"Async::Task","object_id":2832,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":189,"fiber_id":4104,"pid":189,"subject":"Async::Task","object_id":4112,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":45,"fiber_id":2808,"pid":45,"subject":"Async::Task","object_id":2816,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":15,"fiber_id":2536,"pid":15,"subject":"Async::Task","object_id":2544,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":138,"fiber_id":3368,"pid":138,"subject":"Async::Task","object_id":3376,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":33,"fiber_id":2744,"pid":33,"subject":"Async::Task","object_id":2752,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":27,"fiber_id":2120,"pid":27,"subject":"Async::Task","object_id":2128,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":144,"fiber_id":3752,"pid":144,"subject":"Async::Task","object_id":3760,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":15,"fiber_id":2552,"pid":15,"subject":"Async::Task","object_id":2560,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":198,"fiber_id":3736,"pid":198,"subject":"Async::Task","object_id":3744,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":12,"fiber_id":2392,"pid":12,"subject":"Async::Task","object_id":2400,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":123,"fiber_id":3000,"pid":123,"subject":"Async::Task","object_id":3008,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":177,"fiber_id":3752,"pid":177,"subject":"Async::Task","object_id":3760,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":96,"fiber_id":2920,"pid":96,"subject":"Async::Task","object_id":2928,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":9,"fiber_id":2616,"pid":9,"subject":"Async::Task","object_id":2624,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":168,"fiber_id":3592,"pid":168,"subject":"Async::Task","object_id":3600,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":48,"fiber_id":2696,"pid":48,"subject":"Async::Task","object_id":2704,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":147,"fiber_id":3032,"pid":147,"subject":"Async::Task","object_id":3040,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":123,"fiber_id":3016,"pid":123,"subject":"Async::Task","object_id":3024,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":180,"fiber_id":3592,"pid":180,"subject":"Async::Task","object_id":3600,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":99,"fiber_id":3000,"pid":99,"subject":"Async::Task","object_id":3008,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":87,"fiber_id":2744,"pid":87,"subject":"Async::Task","object_id":2752,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":123,"fiber_id":3032,"pid":123,"subject":"Async::Task","object_id":3040,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":162,"fiber_id":3480,"pid":162,"subject":"Async::Task","object_id":3488,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":198,"fiber_id":3752,"pid":198,"subject":"Async::Task","object_id":3760,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":153,"fiber_id":3608,"pid":153,"subject":"Async::Task","object_id":3616,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":168,"fiber_id":3608,"pid":168,"subject":"Async::Task","object_id":3616,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":111,"fiber_id":3416,"pid":111,"subject":"Async::Task","object_id":3424,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":144,"fiber_id":3768,"pid":144,"subject":"Async::Task","object_id":3776,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":183,"fiber_id":3368,"pid":183,"subject":"Async::Task","object_id":3376,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":96,"fiber_id":2936,"pid":96,"subject":"Async::Task","object_id":2944,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":15,"fiber_id":2504,"pid":15,"subject":"Async::Task","object_id":2512,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":192,"fiber_id":3768,"pid":192,"subject":"Async::Task","object_id":3776,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":162,"fiber_id":3496,"pid":162,"subject":"Async::Task","object_id":3504,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":81,"fiber_id":3064,"pid":81,"subject":"Async::Task","object_id":3072,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":60,"fiber_id":3000,"pid":60,"subject":"Async::Task","object_id":3008,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":117,"fiber_id":2920,"pid":117,"subject":"Async::Task","object_id":2928,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":48,"fiber_id":2712,"pid":48,"subject":"Async::Task","object_id":2720,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":99,"fiber_id":3016,"pid":99,"subject":"Async::Task","object_id":3024,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":174,"fiber_id":3880,"pid":174,"subject":"Async::Task","object_id":3888,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":159,"fiber_id":3384,"pid":159,"subject":"Async::Task","object_id":3392,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":111,"fiber_id":3432,"pid":111,"subject":"Async::Task","object_id":3440,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":15,"fiber_id":2568,"pid":15,"subject":"Async::Task","object_id":2576,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":9,"fiber_id":2632,"pid":9,"subject":"Async::Task","object_id":2640,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":60,"fiber_id":3016,"pid":60,"subject":"Async::Task","object_id":3024,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":138,"fiber_id":3384,"pid":138,"subject":"Async::Task","object_id":3392,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":24,"fiber_id":2568,"pid":24,"subject":"Async::Task","object_id":2576,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":15,"fiber_id":2584,"pid":15,"subject":"Async::Task","object_id":2592,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":93,"fiber_id":3224,"pid":93,"subject":"Async::Task","object_id":3232,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":18,"fiber_id":2504,"pid":18,"subject":"Async::Task","object_id":2512,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":87,"fiber_id":2760,"pid":87,"subject":"Async::Task","object_id":2768,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":84,"fiber_id":2840,"pid":84,"subject":"Async::Task","object_id":2848,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":69,"fiber_id":2760,"pid":69,"subject":"Async::Task","object_id":2768,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":15,"fiber_id":2600,"pid":15,"subject":"Async::Task","object_id":2608,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":102,"fiber_id":3096,"pid":102,"subject":"Async::Task","object_id":3104,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":183,"fiber_id":3384,"pid":183,"subject":"Async::Task","object_id":3392,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":87,"fiber_id":2776,"pid":87,"subject":"Async::Task","object_id":2784,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":24,"fiber_id":2584,"pid":24,"subject":"Async::Task","object_id":2592,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":96,"fiber_id":2952,"pid":96,"subject":"Async::Task","object_id":2960,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":174,"fiber_id":3960,"pid":174,"subject":"Async::Task","object_id":3968,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":96,"fiber_id":2968,"pid":96,"subject":"Async::Task","object_id":2976,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":12,"fiber_id":2408,"pid":12,"subject":"Async::Task","object_id":2416,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":69,"fiber_id":2776,"pid":69,"subject":"Async::Task","object_id":2784,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":15,"fiber_id":2616,"pid":15,"subject":"Async::Task","object_id":2624,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":102,"fiber_id":3112,"pid":102,"subject":"Async::Task","object_id":3120,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":117,"fiber_id":2936,"pid":117,"subject":"Async::Task","object_id":2944,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":102,"fiber_id":3128,"pid":102,"subject":"Async::Task","object_id":3136,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":18,"fiber_id":2520,"pid":18,"subject":"Async::Task","object_id":2528,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":174,"fiber_id":3976,"pid":174,"subject":"Async::Task","object_id":3984,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":18,"fiber_id":2536,"pid":18,"subject":"Async::Task","object_id":2544,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":147,"fiber_id":3048,"pid":147,"subject":"Async::Task","object_id":3056,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":15,"fiber_id":2632,"pid":15,"subject":"Async::Task","object_id":2640,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":111,"fiber_id":3448,"pid":111,"subject":"Async::Task","object_id":3456,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":117,"fiber_id":2952,"pid":117,"subject":"Async::Task","object_id":2960,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":12,"fiber_id":2424,"pid":12,"subject":"Async::Task","object_id":2432,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":102,"fiber_id":3144,"pid":102,"subject":"Async::Task","object_id":3152,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":18,"fiber_id":2552,"pid":18,"subject":"Async::Task","object_id":2560,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":102,"fiber_id":3160,"pid":102,"subject":"Async::Task","object_id":3168,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":87,"fiber_id":2792,"pid":87,"subject":"Async::Task","object_id":2800,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":102,"fiber_id":3176,"pid":102,"subject":"Async::Task","object_id":3184,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":60,"fiber_id":3032,"pid":60,"subject":"Async::Task","object_id":3040,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":174,"fiber_id":3992,"pid":174,"subject":"Async::Task","object_id":4000,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":102,"fiber_id":3192,"pid":102,"subject":"Async::Task","object_id":3200,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":108,"fiber_id":2920,"pid":108,"subject":"Async::Task","object_id":2928,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":87,"fiber_id":2808,"pid":87,"subject":"Async::Task","object_id":2816,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":108,"fiber_id":2936,"pid":108,"subject":"Async::Task","object_id":2944,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":174,"fiber_id":3896,"pid":174,"subject":"Async::Task","object_id":3904,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":18,"fiber_id":2568,"pid":18,"subject":"Async::Task","object_id":2576,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":87,"fiber_id":2824,"pid":87,"subject":"Async::Task","object_id":2832,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":18,"fiber_id":2584,"pid":18,"subject":"Async::Task","object_id":2592,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":174,"fiber_id":3912,"pid":174,"subject":"Async::Task","object_id":3920,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":18,"fiber_id":2600,"pid":18,"subject":"Async::Task","object_id":2608,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":174,"fiber_id":3928,"pid":174,"subject":"Async::Task","object_id":3936,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":174,"fiber_id":3944,"pid":174,"subject":"Async::Task","object_id":3952,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":111,"fiber_id":3464,"pid":111,"subject":"Async::Task","object_id":3472,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":111,"fiber_id":3480,"pid":111,"subject":"Async::Task","object_id":3488,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":111,"fiber_id":3496,"pid":111,"subject":"Async::Task","object_id":3504,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":111,"fiber_id":3512,"pid":111,"subject":"Async::Task","object_id":3520,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} +{"time":"2026-09-03T12:06:34+00:00","severity":"warn","process_id":111,"fiber_id":3528,"pid":111,"subject":"Async::Task","object_id":3536,"annotation":"Reading HTTP/1.1 requests for Async::HTTP::Protocol::HTTP1::Server.","message":"Task may have ended with unhandled exception.","event":{"type":"failure","root":"/app","class":"Errno::ECONNRESET","message":"Connection reset by peer","backtrace":["/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO#write'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/buffered.rb:112:in 'IO::Stream::Buffered#syswrite'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:99:in 'IO::Stream::Writable#drain'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:47:in 'block in IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'Thread::Mutex#synchronize'","/app/vendor/bundle/ruby/4.0.0/gems/io-stream-0.11.1/lib/io/stream/writable.rb:46:in 'IO::Stream::Writable#flush'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:637:in 'Protocol::HTTP1::Connection#write_fixed_length_body'","/app/vendor/bundle/ruby/4.0.0/gems/protocol-http1-0.37.0/lib/protocol/http1/connection.rb:765:in 'Protocol::HTTP1::Connection#write_body'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:136:in 'block in Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:408:in 'Async::Task#defer_stop'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/protocol/http1/server.rb:68:in 'Async::HTTP::Protocol::HTTP1::Server#each'","/app/vendor/bundle/ruby/4.0.0/gems/async-http-0.94.2/lib/async/http/server.rb:49:in 'Async::HTTP::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/falcon-0.54.2/lib/falcon/server.rb:57:in 'Falcon::Server#accept'","/app/vendor/bundle/ruby/4.0.0/gems/io-endpoint-0.17.2/lib/io/endpoint/wrapper.rb:231:in 'block (2 levels) in IO::Endpoint::Wrapper#accept'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:234:in 'block in Async::Task#run'","/app/vendor/bundle/ruby/4.0.0/gems/async-2.36.0/lib/async/task.rb:512:in 'block in Async::Task#schedule'"]}} diff --git a/site/static/logs/pipelined/4096/rack-iodine.log b/site/static/logs/pipelined/4096/rack-iodine.log index fc958d6a0..ed31ea238 100644 --- a/site/static/logs/pipelined/4096/rack-iodine.log +++ b/site/static/logs/pipelined/4096/rack-iodine.log @@ -20,19 +20,19 @@ INFO: 18 is running. INFO: 22 is running. INFO: 26 is running. INFO: 30 is running. +INFO: 35 is running. INFO: 39 is running. -INFO: 34 is running. INFO: 44 is running. INFO: 49 is running. -INFO: 54 is running. -INFO: 59 is running. -INFO: 64 is running. -INFO: 70 is running. +INFO: 55 is running. +INFO: 60 is running. +INFO: 66 is running. +INFO: 71 is running. INFO: 76 is running. -INFO: 80 is running. -INFO: 86 is running. -INFO: 91 is running. -INFO: 95 is running. +INFO: 81 is running. +INFO: 85 is running. +INFO: 90 is running. +INFO: 96 is running. INFO: 101 is running. INFO: 106 is running. INFO: 111 is running. @@ -43,20 +43,20 @@ INFO: 131 is running. INFO: 136 is running. INFO: 141 is running. INFO: 146 is running. -INFO: 151 is running. +INFO: 152 is running. INFO: 156 is running. INFO: 161 is running. INFO: 166 is running. INFO: 171 is running. INFO: 176 is running. -INFO: 181 is running. -INFO: 186 is running. -INFO: 191 is running. -INFO: 196 is running. -INFO: 201 is running. +INFO: 182 is running. +INFO: 187 is running. +INFO: 192 is running. +INFO: 197 is running. +INFO: 202 is running. INFO: 207 is running. INFO: 212 is running. -INFO: 217 is running. +INFO: 216 is running. INFO: 222 is running. INFO: 227 is running. INFO: 232 is running. @@ -78,16 +78,16 @@ INFO: 308 is running. INFO: 312 is running. INFO: 317 is running. INFO: 322 is running. -INFO: 327 is running. +INFO: 328 is running. INFO: 332 is running. INFO: 337 is running. -INFO: 343 is running. -INFO: 348 is running. +INFO: 342 is running. +INFO: 347 is running. INFO: 353 is running. INFO: 358 is running. INFO: 363 is running. INFO: 368 is running. -INFO: 373 is running. +INFO: 372 is running. INFO: 378 is running. INFO: 383 is running. INFO: 388 is running. @@ -132,12 +132,12 @@ INFO: 578 is running. INFO: 583 is running. INFO: 588 is running. INFO: 593 is running. -INFO: 598 is running. -INFO: 603 is running. -INFO: 610 is running. +INFO: 599 is running. +INFO: 604 is running. INFO: 614 is running. -INFO: 619 is running. -INFO: 624 is running. +INFO: 610 is running. +INFO: 618 is running. +INFO: 623 is running. INFO: 629 is running. INFO: 634 is running. INFO: 639 is running.